We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6783e67 + 5123bcb commit 358cecaCopy full SHA for 358ceca
lib/model/faster_rcnn/faster_rcnn.py
@@ -46,7 +46,7 @@ def forward(self, im_data, im_info, gt_boxes, num_boxes):
46
# feed image data to base model to obtain base feature map
47
base_feat = self.RCNN_base(im_data)
48
49
- # feed base feature map tp RPN to obtain rois
+ # feed base feature map to RPN to obtain rois
50
rois, rpn_loss_cls, rpn_loss_bbox = self.RCNN_rpn(base_feat, im_info, gt_boxes, num_boxes)
51
52
# if it is training phase, then use ground truth bboxes for refining
0 commit comments