File size: 547 Bytes
b2e6f50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
license: mit
base_model:
- Ultralytics/YOLO11
pipeline_tag: image-segmentation
---

# YOLOv11 Model

This is a YOLOv11 model trained for object detection using the Ultralytics framework.

## Model Details
- **Model Type**: YOLOv11
- **Framework**: PyTorch
- **Training Dataset**: [Specify dataset, e.g., COCO or custom]
- **Classes**: [List classes or number, e.g., 80 for COCO]
- **License**: Apache-2.0

## Usage
```python
from ultralytics import YOLO
model = YOLO('path/to/yolo11n.pt')
results = model.predict('image.jpg')
results[0].show()