A TensorFlow 2.0 implementation of YOLOv4: Optimal Speed and Accuracy of Object Detection
This implementation runs (for now) inference with the original Darknet weights from AlexeyAB. See the roadmap section to see what's next.
To install this package, you can run:
pip install https://github.com/sicara/tf2-yolov4/archive/master.zip
pip install tensorflow
# Check that tf2_yolov4 is installed properly
python -c "from tf2_yolov4.model import YOLOv4; print(YOLOv4)"
Requirements:
To load the Darknet weights trained on COCO, you have to:
convert-darknet-weights PATH_TO/yolov4.weights
TF weights should be saved as yolov4.h5
.
For more information about the conversion script, run convert-darknet-weights --help
.
Version | Tag | Published |
---|---|---|
0.1.0 | 3yrs ago |