allanzelener / YAD2K

YAD2K: Yet Another Darknet 2 Keras
Other
2.72k stars 878 forks source link

Implement the new YOLO v3 #114

Open yonatann opened 6 years ago

yonatann commented 6 years ago

Hi,

I love the work you did on YOLO v2.

It would be great if you can implement the new YOLO v3 paper: https://pjreddie.com/media/files/papers/YOLOv3.pdf

Cheers!

VishantVadher commented 6 years ago

Hello

can i get tutorials how to use it ? i want this keras model to work for object detection of cars please can you guide me ?

ktbyte commented 6 years ago

@VishantVadher , @yonatann , YOLOv3 config and weights are now available here: https://pjreddie.com/darknet/yolo/

Weights: https://pjreddie.com/media/files/yolov3.weights Config: https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3.cfg

Unfortunately, the new config files supplies a "shortcut" section which cannot be parsed by yad2k.py . Any ideas?

VishantVadher commented 6 years ago

Lets dig in :D

wuyuzhang commented 6 years ago

Unfortunately, the new config files supplies a "shortcut" section which cannot be parsed by yad2k.py . Any ideas?

same question

greatdt commented 5 years ago

Same question. Any solutions?@wuyuzhang @VishantVadher , @yonatann When I tested in YOLO v3 by yad2k.py, it will raise error "Unsupported section header type: shortcut_0"

srgautam9 commented 4 years ago

Unfortunately, the new config files supplies a "shortcut" section which cannot be parsed by yad2k.py . Any ideas?

same question

Not only "shortcut" part but also "yolo" part will show error because in yad2k.py there is neither section.startswith('shortcut') nor section.startswith('yolo').