pjreddie / darknet

Convolutional Neural Networks
http://pjreddie.com/darknet/
Other
25.73k stars 21.33k forks source link

YOLOv1 cannot works?cannot download right yolov1 weights from Darknet project website. #310

Open csaimd opened 6 years ago

csaimd commented 6 years ago

the tiny-yolo.weights(yolov1) detects nothing,download from the website: Download the pretrained weights here (103 MB). but when you download,its only 42MB not 103MB.so running ./darknet yolo test cfg/yolov1/tiny-yolo.cfg tiny-yolo.weights data/person.jpg detects nothing,is this a bug?If someone can provide the right weights, thank you very much !

JiancunWang commented 6 years ago

I have the same problem. Did you solve it?

ahsan856jalal commented 6 years ago

./darknet yolo test cfg/yolov1/tiny-yolo.cfg tiny-yolo.weights data/person.jpg -thresh 0.001 try this and see if you are getting any detections

jycccccccc commented 6 years ago

I also encounted the same problem. It seems the weights for yolov1 are wrong. Anyone know how to solve it?

JiancunWang commented 6 years ago

@jycccccccc You are right! I tried yolov2, and it's OK. And also, you may use detector mode with a parameter of .data instead of yolo.

JiancunWang commented 6 years ago

@ahsan856jalal I had tried, and the result is no detection. I have the same idea with @jycccccccc .