wuhp commited on
Commit
a9c8c95
·
verified ·
1 Parent(s): e82b616

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Human-50e-11n
2
+
3
+ ## Model Overview
4
+
5
+ **Architecture:** YOLOv11
6
+ **Training Epochs:** 50
7
+ **Batch Size:** 32
8
+ **Optimizer:** auto
9
+ **Learning Rate:** 0.0005
10
+ **Data Augmentation Level:** Moderate
11
+
12
+ ## Training Metrics
13
+
14
+ - **mAP@0.5:** 0.91583
15
+
16
+ ## Class IDs
17
+
18
+ | Class ID | Class Name |
19
+ |----------|------------|
20
+ | 0 | Person |
21
+
22
+
23
+ ## Datasets Used
24
+
25
+ - detect-human-lg2ng_v1
26
+ - human-detection-grmvx_v1
27
+ - human-detection-p8c2v_v1
28
+ - human-pysi7_v3
29
+ - humans-ziarm_v2
30
+ - people-4evn7-fqlf8-d887c_v3
31
+ - people-4evn7_v2
32
+ - person-dataset-kzsop-vemv4-h1uoh-q5vtx_v2
33
+ - tello-olz2y_v5
34
+
35
+ ## Class Image Counts
36
+
37
+ | Class Name | Image Count |
38
+ |------------|-------------|
39
+ | Person | 10865 |
40
+
41
+
42
+ ## Description
43
+
44
+ This model was trained using the YOLOv11 architecture on a custom dataset. The training process involved 50 epochs with a batch size of 32. The optimizer used was **auto** with an initial learning rate of 0.0005. Data augmentation was set to the **Moderate** level to enhance model robustness.
45
+
46
+ ## Usage
47
+
48
+ To use this model for inference, follow the instructions below:
49
+
50
+ ```python
51
+ from ultralytics import YOLO
52
+
53
+ # Load the trained model
54
+ model = YOLO('best.pt')
55
+
56
+ # Perform inference on an image
57
+ results = model('path_to_image.jpg')
58
+
59
+ # Display results
60
+ results.show()