ultralytics 8.0.151 add DOTAv2.yaml for OBB training (#4258)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kayzwer <68285002+Kayzwer@users.noreply.github.com>
This commit is contained in:
Glenn Jocher 2023-08-10 00:55:36 +02:00 committed by GitHub
parent a76af55533
commit c9be1f3cce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
46 changed files with 805 additions and 303 deletions

View file

@ -40,7 +40,7 @@ To train a model on the ImageNette dataset for 100 epochs with a standard image
model = YOLO('yolov8n-cls.pt') # load a pretrained model (recommended for training)
# Train the model
model.train(data='imagenette', epochs=100, imgsz=224)
results = model.train(data='imagenette', epochs=100, imgsz=224)
```
=== "CLI"
@ -75,7 +75,7 @@ To use these datasets, simply replace 'imagenette' with 'imagenette160' or 'imag
model = YOLO('yolov8n-cls.pt') # load a pretrained model (recommended for training)
# Train the model with ImageNette160
model.train(data='imagenette160', epochs=100, imgsz=160)
results = model.train(data='imagenette160', epochs=100, imgsz=160)
```
=== "CLI"
@ -96,7 +96,7 @@ To use these datasets, simply replace 'imagenette' with 'imagenette160' or 'imag
model = YOLO('yolov8n-cls.pt') # load a pretrained model (recommended for training)
# Train the model with ImageNette320
model.train(data='imagenette320', epochs=100, imgsz=320)
results = model.train(data='imagenette320', epochs=100, imgsz=320)
```
=== "CLI"