Skip to content

Commit

Permalink
Merge branch 'main' of github.com:meituan/YOLOv6
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilicyy committed Apr 28, 2023
2 parents 58594ac + f2114f3 commit bf14e20
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 bf14e20

Please sign in to comment.