philipperemy / yolo-9000

YOLO9000: Better, Faster, Stronger - Real-Time Object Detection. 9000 classes!
Apache License 2.0
1.18k stars 309 forks source link

Fails to identify objects that where picked up prior with yolo.weights #13

Closed rnunziata closed 6 years ago

rnunziata commented 6 years ago

Fails to identify objects that where picked up prior with yolo.weights. Old system idenified books in this photo. It seems to skip over small objects. 2017-09-11-123956

philipperemy commented 6 years ago

@rnunziata YOLO 9000 is less precise than the YOLO V2. Its mAP is lower.

But it can recognize a lot more objects. Try to decrease the threshold when you do inference:

-thresh 0.15

Also please do refer to this conversation for more information: https://github.com/philipperemy/yolo-9000/issues/3

Thanks

rnunziata commented 6 years ago

Thanks