| 123456789101112131415161718 |
- # Train YOLO
- python train.py \
- --cuda \
- -d coco \
- --root /mnt/share/ssd2/dataset/ \
- -m yolox_n \
- -bs 16 \
- -size 640 \
- --wp_epoch 3 \
- --max_epoch 300 \
- --eval_epoch 10 \
- --ema \
- --fp16 \
- --multi_scale \
- # --resume weights/coco/yolov3_t/yolov3_t_epoch_171_23.04.pth \
- # --pretrained weights/coco/yolo_free_medium/yolo_free_medium_39.46.pth \
- # --eval_first
|