sfzhang15 / RefineDet

Single-Shot Refinement Neural Network for Object Detection, CVPR, 2018
Other
1.43k stars 393 forks source link

How can I change the scale setting? #175

Closed pyupcgithub closed 5 years ago

pyupcgithub commented 5 years ago

In the orginal paper, the scale is the 4 times of the total stride size of the corresponding layer, if i want the try more than one scale, where should i change the code ?

what the use of min_sizes and max_sizes ?

pyupcgithub commented 5 years ago

@sfzhang15

sfzhang15 commented 5 years ago

@pyupcgithub You can change the min_sizes to use more scales. The min_sizes will use all aspect ratios, while the max_sizes means using the sqrt(min_size * max_size) scale with only use 1:1 aspect ratio.

pyupcgithub commented 5 years ago

thanks for your reply.