Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 1.14 KB

README.md

File metadata and controls

47 lines (27 loc) · 1.14 KB

keras-yolo4

license

请使用更完善的版本:

Please visit here for more complete model:

Introduction

A Keras implementation of YOLOv4 (Tensorflow backend) inspired by https://github.com/AlexeyAB/darknet.

Frame code from https://github.com/qqwweee/keras-yolo3.


Quick Start

  1. Download YOLOv4 weights from yolov4.weights.
  2. Convert the Darknet YOLOv4 model to a Keras model.
  3. Run YOLOv4 detection.
python convert.py

Running convert.py will get keras yolov4 weight file yolo4_weight.h5.

Usage

Inference

python test.py

Todo

Debug train code with CIoU loss. Loss code from https://github.com/david8862/keras-YOLOv3-model-set.