Robinatp / YOLO_Tensorflow

YOLO( You Only Look Once,including YOLOv1,YOLOv2,YOLOv3) using tensorflow ,including train/detected and export pb script. Convert darknet weight to tensorflow.Implement YOLO with TF_Slim
25 stars 12 forks source link

how to train yolov3 #1

Open wangce888 opened 6 years ago

Robinatp commented 6 years ago

Sorry, I don't implement train code,It just inference the model by tensorflow because this project converts the darknet weight of c fomat to the ckpt of tensorflow fomat by a single python script directly without any other modify.

If you want train yolov3, I suggest you follow the command of following website

Training YOLO on VOC [https://pjreddie.com/darknet/yolo/] main steps: 1,label the box 2,generate Labels for VOC and modify some config file 3,train and save weight 4, run my python script generate *.pb which convert darknet to tensorflow!