# yolov3-keras **Repository Path**: bobin007/yolov3-keras ## Basic Information - **Project Name**: yolov3-keras - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-05-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # keras-yolo3 [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](LICENSE) ## Introduction A Keras implementation of YOLOv3 (Tensorflow backend) inspired by [allanzelener/YAD2K](https://github.com/allanzelener/YAD2K). --- ## Quick Start 1. Download YOLOv3 weights from [YOLO website](http://pjreddie.com/darknet/yolo/). 2. Convert the Darknet YOLO model to a Keras model. 3. Run YOLO detection. ``` wget https://pjreddie.com/media/files/yolov3.weights python convert.py yolov3.cfg yolov3.weights model_data/yolo.h5 python yolo.py OR python yolo_video.py ``` --- ## Training 1. Generate your own annotation file and class names file. One row for one image; Row format: image_file_path box1 box2 ... boxN; Box format: x_min,y_min,x_max,y_max,class_id (no space). For VOC dataset, try `python voc_annotation.py` 2. Make sure you have run `python convert.py yolov3.cfg yolov3.weights model_data/yolo.h5` A file model_data/yolo_weights.h5 will be generated when you run train.py for the first time. The file is used to load pretrained weights. 3. Modify train.py and start training. `python train.py` You will get the trained model model_data/my_yolo.h5. ======= # yolov3-keras #### Description {**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} #### Software Architecture Software architecture description #### Installation 1. xxxx 2. xxxx 3. xxxx #### Instructions 1. xxxx 2. xxxx 3. xxxx #### Contribution 1. Fork the project 2. Create Feat_xxx branch 3. Commit your code 4. Create Pull Request #### Gitee Feature 1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md 2. Gitee blog [blog.gitee.com](https://blog.gitee.com) 3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) 4. The most valuable open source project [GVP](https://gitee.com/gvp) 5. The manual of Gitee [http://git.mydoc.io/](http://git.mydoc.io/) 6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)