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
these codes are from network.py file row 584 to row 586, i guess they are used to generate three different output by making different scale parameter and using the RoIRingPoolFunction structure. but i have no idea about how does it work and why do you set the parameter to 0, 1.0, 1.8, 1.0/1.8. thank you a lot.
The text was updated successfully, but these errors were encountered:
pool5_roi = self._roi_ring_pool_layer(net_conv, rois, 0., 1.0)
pool5_context = self._roi_ring_pool_layer(net_conv, rois, 1.0, 1.8)
pool5_frame = self._roi_ring_pool_layer(net_conv, rois, scale_inner = 1.0 / 1.8, scale_outer = 1.0)
these codes are from network.py file row 584 to row 586, i guess they are used to generate three different output by making different scale parameter and using the RoIRingPoolFunction structure. but i have no idea about how does it work and why do you set the parameter to 0, 1.0, 1.8, 1.0/1.8. thank you a lot.
The text was updated successfully, but these errors were encountered: