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

@ -50,7 +50,7 @@ To train a model using these OBB formats:
```bash
# Train a new YOLOv8n-OBB model on the DOTAv2 dataset
yolo detect train data=DOTAv1.yaml model=yolov8n.pt epochs=100 imgsz=640
yolo obb train data=DOTAv1.yaml model=yolov8n-obb.pt epochs=100 imgsz=640
```
## Supported Datasets
@ -125,7 +125,7 @@ Training a YOLOv8 model with OBBs involves ensuring your dataset is in the YOLO
```bash
# Train a new YOLOv8n-OBB model on the custom dataset
yolo detect train data=your_dataset.yaml model=yolov8n.pt epochs=100 imgsz=640
yolo obb train data=your_dataset.yaml model=yolov8n-obb.yaml epochs=100 imgsz=640
```
This ensures your model leverages the detailed OBB annotations for improved detection accuracy.