andy-yun / pytorch-0.4-yolov3

Yet Another Implimentation of Pytroch 0.4.1 and YoloV3 on python3
MIT License
279 stars 72 forks source link

About the net #13

Closed door5719 closed 6 years ago

door5719 commented 6 years ago

Sir ,I want to know the out part of last layer 13x13x255 /26x26x255 /52x52x255(80 classes)..255 may mean Xx3|Yx3|Wx3|Hx3|confidencex3|classesx3 or (X|Y|W|H|confidence|classes)x3,which order is right?

andy-yun commented 6 years ago

Does 3 means mask number on detection layer?

each object has a information related to x, y, w, h, classes. Therefore, I think, if I correctly understand your question, the later is right.

door5719 commented 6 years ago

Thank you very much ,sir~