ultralytics 8.0.68 HUB zipfile without suffix fix (#1877)

Co-authored-by: Damiano Ferrari <34270884+ferraridamiano@users.noreply.github.com>
This commit is contained in:
Glenn Jocher
2023-04-06 22:55:49 +02:00
committed by GitHub
parent 2725545090
commit d3f097314f
5 changed files with 13 additions and 11 deletions

View File

@ -62,13 +62,13 @@ Train a YOLOv8-pose model on the COCO128-pose dataset.
```bash
# Build a new model from YAML and start training from scratch
yolo detect train data=coco128-pose.yaml model=yolov8n-pose.yaml epochs=100 imgsz=640
yolo pose train data=coco128-pose.yaml model=yolov8n-pose.yaml epochs=100 imgsz=640
# Start training from a pretrained *.pt model
yolo detect train data=coco128-pose.yaml model=yolov8n-pose.pt epochs=100 imgsz=640
yolo pose train data=coco128-pose.yaml model=yolov8n-pose.pt epochs=100 imgsz=640
# Build a new model from YAML, transfer pretrained weights to it and start training
yolo detect train data=coco128-pose.yaml model=yolov8n-pose.yaml pretrained=yolov8n-pose.pt epochs=100 imgsz=640
yolo pose train data=coco128-pose.yaml model=yolov8n-pose.yaml pretrained=yolov8n-pose.pt epochs=100 imgsz=640
```
## Val