qqwweee / keras-yolo3

A Keras implementation of YOLOv3 (Tensorflow backend)
MIT License
7.14k stars 3.44k forks source link

the value of accuracy is too big #721

Open tangbinbinyes opened 4 years ago

tangbinbinyes commented 4 years ago

Hello! After I running kmeans.py,the result of the accuracy is too big.

K anchors: [[ 82 81] [163 248] [186 429] [241 347] [271 416] [313 460] [340 324] [390 378] [464 460]] Accuracy: 24916.17% Then I running train.py,it can not work normally.

kumar10725 commented 3 years ago

Probably your bounding boxes format is not correct, it should be {xmin, ymin, xmax, ymax}. maybe what you have is {x, y, w, h}. if thats not the problem then you should confirm that the input scale is correct.