File size: 624 Bytes
5d43466 a3ce54c 5d43466 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 30 31 32 33 34 35 36 37 38 39 40 41 42 |
---
language: en
tags:
- yolov11
- object-detection
- pytorch
- computer-vision
library_name: ultralytics
pipeline_tag: object-detection
datasets: custom
license: mit
---
# YOLO Custom Model
# 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
|