File size: 429 Bytes
a3ce54c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# YOLO Custom Model
This is a YOLO model trained on custom data.
## Model Description
- Model Type: YOLO
- Training Data: Custom Dataset
- Input: Images
- Output: Bounding boxes with class predictions
## Usage
```python
from ultralytics import YOLO
# Load the model
model = YOLO('model.pt')
# Make predictions
results = model('image.jpg')
```
## Training Details
- Framework: Ultralytics YOLOv8
- Training Device: cuda
|