-
Notifications
You must be signed in to change notification settings - Fork 21.3k
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
waht's the meaning of 'mask' in YOLOV3.cfg [yolo] #558
Comments
Every layer has to know about all of the anchor boxes but is only predicting some subset of them. This could probably be named something better but the mask tells the layer which of the bounding boxes it is responsible for predicting. The first |
The layer assumes if it isn't passed a mask that it is responsible for all the bounding boxes, hence the |
@pjreddie Thanks a lot ! One more question, how do we calculate the results of the three [detection] results? |
i'm not quite sure what you mean, could you clarify? |
maybe this helps, the [yolo] layers simply apply logistic activation to some of the neurons, mainly the ones predicting (x,y) offset, objectness, and class probabilities. then if you call |
@pjreddie Thus, how do we dispose the 3-d tensor to predict one object? |
@pjreddie <https://github.com/pjreddie>, mask => coanchors?
…On Mon, Mar 26, 2018 at 5:01 PM, jwnsu ***@***.***> wrote:
This is similar to Retinanet, an object is assigned to a specific
layer/scale based on size of the object during training, each of the yolo
layers handles different scales (i.e. intended to predicts object of
different sizes )-- it's also ok for 2 layers to predict same object, as
follow-on nms will resolve them. You can check Facebook's Retinanet paper
for more info.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#558 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAA9cxQVUZGqylnE8IhQtLqx9wtYogzrks5tiUkmgaJpZM4S6fjI>
.
--
Regards,
*Luiz Vitor Martinez Cardoso*
"The only limits are the ones you place upon yourself"
|
waht's the meaning of 'mask' in YOLOV3.cfg [yolo]
@pjreddie @Broham
The text was updated successfully, but these errors were encountered: