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
original paper set k = 7
k=3 is for visualization purpose
so a ROI block crop(ROI_ALIGN) from score_map might have the following dimension
[ 7, 7, n_classes ]
but the code seems weird here?
should the code change from pooled.append(tf.image.crop_and_resize( score_maps[i], level_boxes, box_indices, [self.pool_shape * self.k, self.pool_shape * self.k], method="bilinear"))
original paper set k = 7
k=3 is for visualization purpose
so a ROI block crop(ROI_ALIGN) from score_map might have the following dimension
[ 7, 7, n_classes ]
but the code seems weird here?
should the code change from
pooled.append(tf.image.crop_and_resize( score_maps[i], level_boxes, box_indices, [self.pool_shape * self.k, self.pool_shape * self.k], method="bilinear"))
to something like this?
pooled.append(tf.image.crop_and_resize( score_maps[i], level_boxes, box_indices, [ self.k, self.k], method="bilinear"))
The text was updated successfully, but these errors were encountered: