Stinky-Tofu / Stronger-yolo

🔥Improve yolo with latest paper
MIT License
3 stars 0 forks source link

puzzled about the anchors #35

Open zkk0911 opened 5 years ago

zkk0911 commented 5 years ago

Hi, the ANCHORS in the config.py seems like they are statistics from coco dataset kmeans, not the voc. But your training datasets are voc, so i wonder the reason for this inconsistency or maybe there are ideas I havn't got. Thanks

ANCHORS = [[(1.25, 1.625), (2.0, 3.75), (4.125, 2.875)], # Anchors for small obj [(1.875, 3.8125), (3.875, 2.8125), (3.6875, 7.4375)], # Anchors for medium obj [(3.625, 2.8125), (4.875, 6.1875), (11.65625, 10.1875)]] # Anchors for big obj

Stinky-Tofu commented 5 years ago

Yes, the anchors are statistics from coco dataset @zkk0911