File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ class head:
108108 mean = (0 , 0 , 0 , 0 )
109109 std = (1 , 1 , 1 , 1 )
110110
111- # the proposal generation for rpn head
111+ # the proposal generation for RCNN
112112 class proposal :
113113 # number of top-scored proposals to take before NMS
114114 pre_nms_top_n = 2000 if is_train else 1000
@@ -119,7 +119,7 @@ class proposal:
119119 # min proposal box to keep, 0 means keep all
120120 min_bbox_side = 0
121121
122- # the proposal sampling for rpn head during training
122+ # the proposal sampling for RCNN during training
123123 class subsample_proposal :
124124 # add gt to proposals
125125 proposal_wo_gt = False
@@ -135,7 +135,7 @@ class subsample_proposal:
135135 # set to non-zero value could remove some trivial background proposals
136136 bg_thr_lo = 0.0
137137
138- # the learning target for bbox head
138+ # the target encoding for RCNN bbox head
139139 class bbox_target :
140140 # 1(background) + num_class
141141 # could be num_class if using sigmoid activition instead of softmax one
You can’t perform that action at this time.
0 commit comments