caffe-yolo icon indicating copy to clipboard operation
caffe-yolo copied to clipboard

YOLO (Real-Time Object Detection) in caffe

Results 33 caffe-yolo issues
Sort by recently updated
recently updated
newest added

The following arguments are required: -p/--prototxt, -m/--model

![default](https://user-images.githubusercontent.com/30310096/48484069-1c9ed880-e850-11e8-8d11-68077e23bdf1.png)

When I try to run create_yolo_prototxt.py the following error appears ERROR:root:detection layer is not supported I tried different cfg and prototxt files but still nothing. Any ideas?

What is the final command to create the prototxt? When I tried the command python create_yolo_prototxt.py yolo.cfg yolo.prototxt I am getting the error configparser.DuplicateOptionError: While reading from 'yolo.cfg' [line 38]:...

by using python3 i edited ConfigParser into configparser/Configparser and reinstall these file using pip3 and also use ConfigPasrer in python2.7 , but i got the same error for all time...

hi,Thank you very much for your work.But I can't download the" .cfg files ",Can you help?

Now there is Yolo v2 by link: http://pjreddie.com/darknet/yolo/ And old Yolo v1 is here: http://pjreddie.com/darknet/yolov1/ Can the caffe-yolo convert yolo's version 2 (.weights) files to caffemodel files by using create_yolo_caffemodel.py?...

hello, I find this work only has test srcipt, can you provide a training srcipt? thank you very much~

I get these following errors when I try to run create_yolo_prototxt.py with the default cfg/yolo.cfg model to create a new prototxt file. ERROR:root:route layer is not supported ERROR:root:reorg layer is...

Hey, 1) in create_yolo_prototxt.py in case of convolution layer , in case of activation = leaky , the implementation in darknet is x>0 ? x : 0.1 * x, so...