Phurin1 commited on
Commit
cb6aa58
·
verified ·
1 Parent(s): 210eacf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -15
README.md CHANGED
@@ -1,29 +1,42 @@
1
  ---
2
  license: mit
3
- tags:
4
- - object-detection
5
- - yolo
6
- - ultralytics
7
- language: en
8
- library_name: ultralytics
 
 
 
9
  pipeline_tag: object-detection
 
 
 
 
 
 
10
  ---
11
 
12
- # best-p
 
 
13
 
14
- This is a custom YOLOv8 model trained for object detection using Ultralytics.
15
 
16
- ## Example
 
 
 
 
17
 
18
- You can try the hosted inference API or use it locally with `ultralytics`.
19
 
20
- ## How to use
21
 
22
  ```python
23
- from huggingface_hub import hf_hub_download
24
  from ultralytics import YOLO
25
 
26
- model_path = hf_hub_download(repo_id="Phurin1/best-p", filename="best.pt")
27
- model = YOLO(model_path)
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()