├── .gitignore ├── README.md ├── ckpt └── .gitignore ├── config.py ├── create_tfrecords.py ├── darknet53_trainable.py ├── data_pipeline.py ├── draw_boxes.py ├── font ├── FiraMono-Medium.otf └── SIL Open Font License.txt ├── image ├── bladerrunner.jpg ├── dog.jpg └── yolov3_architecture.png ├── load_weights.c ├── predict_net.py ├── prediction.jpg ├── save_npz.py ├── test2007.txt ├── test_darknet53.py ├── test_mask.py ├── test_movingavg.py ├── test_upsampling.py ├── test_yolo_head.py ├── test_yolov3.py ├── train_net.py ├── yolo_layer.py ├── yolo_top.py └── yolov3-voc.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/.gitignore: -------------------------------------------------------------------------------- 1 | yolov3* 2 | checkpoint 3 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/config.py -------------------------------------------------------------------------------- /create_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/create_tfrecords.py -------------------------------------------------------------------------------- /darknet53_trainable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/darknet53_trainable.py -------------------------------------------------------------------------------- /data_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/data_pipeline.py -------------------------------------------------------------------------------- /draw_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/draw_boxes.py -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /image/bladerrunner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/image/bladerrunner.jpg -------------------------------------------------------------------------------- /image/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/image/dog.jpg -------------------------------------------------------------------------------- /image/yolov3_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/image/yolov3_architecture.png -------------------------------------------------------------------------------- /load_weights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/load_weights.c -------------------------------------------------------------------------------- /predict_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/predict_net.py -------------------------------------------------------------------------------- /prediction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/prediction.jpg -------------------------------------------------------------------------------- /save_npz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/save_npz.py -------------------------------------------------------------------------------- /test2007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test2007.txt -------------------------------------------------------------------------------- /test_darknet53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test_darknet53.py -------------------------------------------------------------------------------- /test_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test_mask.py -------------------------------------------------------------------------------- /test_movingavg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test_movingavg.py -------------------------------------------------------------------------------- /test_upsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test_upsampling.py -------------------------------------------------------------------------------- /test_yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test_yolo_head.py -------------------------------------------------------------------------------- /test_yolov3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/test_yolov3.py -------------------------------------------------------------------------------- /train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/train_net.py -------------------------------------------------------------------------------- /yolo_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/yolo_layer.py -------------------------------------------------------------------------------- /yolo_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/yolo_top.py -------------------------------------------------------------------------------- /yolov3-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raytroop/YOLOv3_tf/HEAD/yolov3-voc.cfg --------------------------------------------------------------------------------