Fix incorrect CLI commands in Datasets Docs (#14889)

This commit is contained in:
Jan Knobloch 2024-08-01 17:18:31 +02:00 committed by GitHub
parent eb184a6c07
commit 9ff33d67b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 34 additions and 34 deletions

View file

@ -44,7 +44,7 @@ To train a CNN model on the ImageWoof dataset for 100 epochs with an image size
```bash
# Start training from a pretrained *.pt model
yolo detect train data=imagewoof model=yolov8n-cls.pt epochs=100 imgsz=224
yolo classify train data=imagewoof model=yolov8n-cls.pt epochs=100 imgsz=224
```
## Dataset Variants
@ -113,7 +113,7 @@ To train a Convolutional Neural Network (CNN) model on the ImageWoof dataset usi
=== "CLI"
```bash
yolo detect train data=imagewoof model=yolov8n-cls.pt epochs=100 imgsz=224
yolo classify train data=imagewoof model=yolov8n-cls.pt epochs=100 imgsz=224
```
For more details on available training arguments, refer to the [Training](../../modes/train.md) page.