Skip to content

Commit

Permalink
update yolov6lite train command in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gengyifei committed Apr 28, 2023
1 parent 4762551 commit f2114f3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/Train_coco_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

This guidence shows the training commands for reproducing our results on COCO Dataset.


## For Mobile models

#### YOLOv6Lite-S/M/L

```shell
python -m torch.distributed.launch --nproc_per_node 4 tools/train.py \
--batch 128 \
--img_size 416 \ # train with 416 and eval with 320
--conf configs/yolov6_lite/yolov6_lite_s.py \ # yolov6lite_m/l
--data data/coco.yaml \
--epoch 400 \
--device 0,1,2,3 \
--name yolov6_lite_s_coco
```

## For P5 models

#### YOLOv6-N
Expand Down

0 comments on commit f2114f3

Please sign in to comment.