-
Notifications
You must be signed in to change notification settings - Fork 32
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
A question about layer range #13
Comments
@lmomoy In layer ranges, we set it to [0,48,0,48] cause we want to assign objects with width/height less than 48 to the base layer. Note that we extended other layer ranges for the same reason. |
thanks for your reply |
@lmomoy base_layer_range variable is used to compute anchor widths/heights. We didn't want to use the extended ranges (layer_ranges) since this will introduce some inconsistencies between matrix layers (i.e. anchor width and height w.r.t. layer size will be different from layer to another). |
Hello,guys,I also have some questions in layer range, as I know, the height and width of feature map is a stationary number, but why it is a range in your paper and code ? |
It's a range in the sense that the height or width of the ground truth has to lie within a [min, max] set to be assigned to a layer. |
|
each layer has a feature map of its own - it's downsampled from the last layers of a resnet into a large feature pyramid with asymmetric strides. |
why the the base layer (top left) is set as [24,48,24,48]
but in corresonding layer range the the base layer (top left) is [0,48,0,48]
The text was updated successfully, but these errors were encountered: