How to train YOLOv9 #104
Replies: 3 comments
-
👋 Hello @glenn-jocher, thank you for submitting a
For your specific cases: YOLOv8 OBB training:
Addressing a Bug:
Feature Request:
Please make sure you've searched existing discussions to avoid duplicates. If you need to add any additional information, please comment on this discussion. Thank you for your contribution to improving our project! An Ultralytics engineer will also assist soon 😊 |
Beta Was this translation helpful? Give feedback.
-
👋 Hello @glenn-jocher, thank you for submitting a
Specifically for training YOLOv8 OBB (Oriented Bounding Boxes), you can follow these steps to start your training: from ultralytics import YOLO
# Load the model
model = YOLO('yolov8n') # Load a pre-trained model
# Replace 'your_dataset' with your dataset path
results = model.train(data='your_dataset.yaml', epochs=100, imgsz=640, project='yolov8-obb', name='exp') To handle the bug you've encountered, please provide the following information within this discussion:
For the feature request, kindly detail:
Please make sure you've searched existing discussions to avoid duplicates. If you need to add any additional information, please comment on this discussion. Thank you for your contribution to improving our project! An Ultralytics engineer will also assist you shortly. 🚀 |
Beta Was this translation helpful? Give feedback.
-
👋 Hello @glenn-jocher, thank you for submitting a
Given your query touches upon multiple areas including training YOLOv8 OBB, bug reporting, and feature requests, here are detailed guidelines you can follow:
Please make sure you've searched existing discussions to avoid duplicates. If you need to add any additional information, please comment on this discussion. Thank you for your contribution to improving our project! An Ultralytics engineer will assist you soon. 😃 |
Beta Was this translation helpful? Give feedback.
-
Show me code for training and export to CoreML for YOLOv9 with ultralytics. Also I have a feature request, and where can I submit a bug report?
Beta Was this translation helpful? Give feedback.
All reactions