thtrieu / darkflow

Translate darknet to tensorflow. Load trained weights, retrain/fine-tune using tensorflow, export constant graph def to mobile devices
GNU General Public License v3.0
6.13k stars 2.08k forks source link

Support fot TINY YOLO3 #779

Open SkalskiP opened 6 years ago

SkalskiP commented 6 years ago

The problem is related to this one: https://github.com/thtrieu/darkflow/issues/665 . In addition to the layers mentioned in this issue, there is no support for yolo layer used in yolov3-tiny.cfg Layer [yolo] not implemented Do you plan to add such support? If so, when can you expect?

chinmay5 commented 6 years ago

Yes would be helpful if configs for tiny-yolo are updated

sjain-stanford commented 5 years ago

For those wanting to convert Yolo-v3 from Darknet to TensorFlow:

Yolo-v3 support was recently added to DW2TF (see this PR).

Worth noting that unlike Darkflow which is also a runtime env for training/inference, DW2TF can only convert a Darknet model & weights to TensorFlow. Running training/inference on it would then be up to the user.