-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scale Ratios #34
Comments
Hi @chenyuntc, @vaishnavm217, @Jumabek, @zmonoid, @nationalflag, @tfygg |
@ahkarami I am bit noob at this thing, although the box coder you are pointing at is of FPN, so check paper of that. SSD scales in repo seem right to me |
@vaishnavm217, torchcv/torchcv/models/ssd/net.py Lines 110 to 113 in 6291f3e
I mean the steps , box_sizes , aspect_ratios and fm_sizes .
|
steps are the space between each bounding box centers. |
@vaishnavm217, |
Dear @kuangliu,
Would you please explain how the scale_ratios in your code are defined?
I mean that, for example in the main paper of SSD, the scale ratios are between 0.2 up to 0.9; however as I saw in the script
box_coder.py
the scale_ratios are defined as below:self.scale_ratios = (1., pow(2,1/3.), pow(2,2/3.))
I mean that all the values are greater than 1!!!
The text was updated successfully, but these errors were encountered: