Update README.md
Browse files
README.md
CHANGED
|
@@ -1,29 +1,42 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
| 9 |
pipeline_tag: object-detection
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
-
#
|
|
|
|
|
|
|
| 13 |
|
| 14 |
-
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
```python
|
| 23 |
-
from huggingface_hub import hf_hub_download
|
| 24 |
from ultralytics import YOLO
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
results = model("your_image.jpg")
|
| 29 |
results.show()
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
datasets:
|
| 4 |
+
- coco
|
| 5 |
+
language: []
|
| 6 |
+
metrics:
|
| 7 |
+
- precision
|
| 8 |
+
- recall
|
| 9 |
+
- mAP50
|
| 10 |
+
- mAP50-95
|
| 11 |
+
base_model: ultralytics/yolov11
|
| 12 |
pipeline_tag: object-detection
|
| 13 |
+
library_name: ultralytics
|
| 14 |
+
tags:
|
| 15 |
+
- yolo
|
| 16 |
+
- object-detection
|
| 17 |
+
- computer-vision
|
| 18 |
+
- ultralytics
|
| 19 |
---
|
| 20 |
|
| 21 |
+
# YOLOv11 Object Detection Model
|
| 22 |
+
|
| 23 |
+
This is a YOLOv11 model trained for object detection tasks. The model was trained using the Ultralytics YOLOv11 framework.
|
| 24 |
|
| 25 |
+
## 📦 Model Details
|
| 26 |
|
| 27 |
+
- **Framework**: Ultralytics YOLOv11
|
| 28 |
+
- **Task**: Object Detection
|
| 29 |
+
- **Dataset**: COCO format
|
| 30 |
+
- **Model Size**: ~5MB
|
| 31 |
+
- **Author**: [Phurin1](https://huggingface.co/Phurin1)
|
| 32 |
|
| 33 |
+
## 🧠 Use with Ultralytics
|
| 34 |
|
| 35 |
+
To use this model in your Python code:
|
| 36 |
|
| 37 |
```python
|
|
|
|
| 38 |
from ultralytics import YOLO
|
| 39 |
|
| 40 |
+
model = YOLO("Phurin1/best-p") # Or the full URL: "https://huggingface.co/Phurin1/best-p"
|
| 41 |
+
results = model("https://ultralytics.com/images/bus.jpg", save=True)
|
|
|
|
| 42 |
results.show()
|