tadax / m2det

M2Det implementation using TensorFlow
MIT License
63 stars 26 forks source link

What does "num_priors" mean? #4

Open ReuiYan-Lin opened 5 years ago

ReuiYan-Lin commented 5 years ago

Hi, while reading yours code, I don't understand the mean of "num_priors". Can you tell me the answer? Thank you

w4-kang commented 5 years ago

M2Det is based on SSD: Single Shot Multibox Detector. Concept of prior is from SSD. You should read SSD first to understand what is priors. There are no details about what prior is in M2Det paper.

ReuiYan-Lin commented 5 years ago

Thank you for your answer.