Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# car-75e-11n
|
2 |
+
|
3 |
+
## Model Overview
|
4 |
+
|
5 |
+
**Architecture:** YOLOv11
|
6 |
+
**Training Epochs:** 75
|
7 |
+
**Batch Size:** 32
|
8 |
+
**Optimizer:** auto
|
9 |
+
**Learning Rate:** 0.0005
|
10 |
+
**Data Augmentation Level:** Moderate
|
11 |
+
|
12 |
+
## Training Metrics
|
13 |
+
|
14 |
+
- **[email protected]:** 0.88072
|
15 |
+
|
16 |
+
## Class IDs
|
17 |
+
|
18 |
+
| Class ID | Class Name |
|
19 |
+
|----------|------------|
|
20 |
+
| 0 | Vehicle |
|
21 |
+
|
22 |
+
|
23 |
+
## Datasets Used
|
24 |
+
|
25 |
+
- aerial-cars-rqcqh_v2
|
26 |
+
- bikedetection-7bpwy_v2
|
27 |
+
- car-detection-pyxz2_v4
|
28 |
+
- cars-bytt8_v35
|
29 |
+
- transport-rhkah_v8
|
30 |
+
- vehiclecount_v4
|
31 |
+
- vehicles-q0x2v-8kns4_v1
|
32 |
+
|
33 |
+
## Class Image Counts
|
34 |
+
|
35 |
+
| Class Name | Image Count |
|
36 |
+
|------------|-------------|
|
37 |
+
| Vehicle | 15163 |
|
38 |
+
|
39 |
+
|
40 |
+
## Description
|
41 |
+
|
42 |
+
This model was trained using the YOLOv11 architecture on a custom dataset. The training process involved 75 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.
|
43 |
+
|
44 |
+
## Usage
|
45 |
+
|
46 |
+
To use this model for inference, follow the instructions below:
|
47 |
+
|
48 |
+
```python
|
49 |
+
from ultralytics import YOLO
|
50 |
+
|
51 |
+
# Load the trained model
|
52 |
+
model = YOLO('best.pt')
|
53 |
+
|
54 |
+
# Perform inference on an image
|
55 |
+
results = model('path_to_image.jpg')
|
56 |
+
|
57 |
+
# Display results
|
58 |
+
results.show()
|