You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 252-265: from rois to cropped_rois, the order of rois has been changed, which means the outputs['refined’][‘box’] has different order compared to rois. However, bbox_targets (Line 420) has the same order as rois. So for Line 441 refined_box_loss = bbox_inside_weights * _smooth_l1_dist(boxes, bbox_targets), there is misalignment between boxes and xbox_targets. If this true, this is a serious bug. Or am I misunderstanding something here? Thanks.