Rohan Bagewadi
Results
2
issues of
Rohan Bagewadi
I think the parameters in for calculating binary_crossentropy should be interchanged i.e K.binary_crossentropy(y_pred[:, :, :, :], y_true[:, :, :, num_anchors:]) instead should be K.binary_crossentropy(y_true[:, :, :, num_anchors:], y_pred[:, :, :,...
question
In calc_rpn function of data_generator.py. The width(anchor_x ) and height (anchor_y) for the anchor boxes are calculated based on (self.anchor_box_scales, self.anchor_box_ratios) in config.py file and these values corresponds to the...