Skip to content

Commit

Permalink
Fix typo in rpn_class_loss_graph
Browse files Browse the repository at this point in the history
  • Loading branch information
keineahnung2345 authored and waleedka committed Jan 28, 2019
1 parent 1721e84 commit b29b32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrcnn/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ def rpn_class_loss_graph(rpn_match, rpn_class_logits):
rpn_match: [batch, anchors, 1]. Anchor match type. 1=positive,
-1=negative, 0=neutral anchor.
rpn_class_logits: [batch, anchors, 2]. RPN classifier logits for FG/BG.
rpn_class_logits: [batch, anchors, 2]. RPN classifier logits for BG/FG.
"""
# Squeeze last dim to simplify
rpn_match = tf.squeeze(rpn_match, -1)
Expand Down

0 comments on commit b29b32c

Please sign in to comment.