Instructions to use GaryFer/smart-parking-weights with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use GaryFer/smart-parking-weights with ultralytics:
from ultralytics import YOLOvv8 model = YOLOvv8.from_pretrained("GaryFer/smart-parking-weights") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: object-detection
|
| 4 |
+
datasets:
|
| 5 |
+
- GaryFer/smart-parking-upeu-v4
|
| 6 |
+
language:
|
| 7 |
+
- es
|
| 8 |
+
metrics:
|
| 9 |
+
- map
|
| 10 |
+
tags:
|
| 11 |
+
- object-detection
|
| 12 |
+
- parking
|
| 13 |
+
- yolov8
|
| 14 |
+
- yolov11
|
| 15 |
+
- yolov12
|
| 16 |
+
- rtdetr
|
| 17 |
+
- faster-rcnn
|
| 18 |
+
- ultralytics
|
| 19 |
---
|
| 20 |
+
|
| 21 |
+
# Smart Parking UPeU — Model Weights
|
| 22 |
+
|
| 23 |
+
Trained model weights for parking slot detection comparing five architectures on the Smart Parking UPeU v4 dataset (Juliaca, Peru).
|
| 24 |
+
|
| 25 |
+
## Models included
|
| 26 |
+
- YOLOv8s
|
| 27 |
+
- YOLOv11s
|
| 28 |
+
- YOLOv12s
|
| 29 |
+
- RT-DETR-L
|
| 30 |
+
- Faster R-CNN (ResNet-50 FPN)
|
| 31 |
+
|
| 32 |
+
## Dataset
|
| 33 |
+
3 classes: `libre`, `ocupado`, `no_disponible`
|
| 34 |
+
3,072 training images / 293 validation / 146 test
|
| 35 |
+
|
| 36 |
+
## Results (mAP@0.5, mean ± SD, 10 runs)
|
| 37 |
+
| Model | mAP@0.5 | FPS |
|
| 38 |
+
|-------|---------|-----|
|
| 39 |
+
| YOLOv8s | 0.9948 ± 0.0002 | 205.5 ± 6.4 |
|
| 40 |
+
| YOLOv11s | 0.9947 ± 0.0001 | 161.2 ± 5.7 |
|
| 41 |
+
| YOLOv12s | 0.9946 ± ? | 94.2 ± 26.9 |
|
| 42 |
+
| RT-DETR-L | 0.9946 ± 0.0002 | 41.1 ± 0.6 |
|
| 43 |
+
| Faster R-CNN | 0.9925 ± 0.0003 | 26.9 ± 0.9 |
|
| 44 |
+
|
| 45 |
+
## Citation
|
| 46 |
+
```
|
| 47 |
+
@article{yunganina2026smartparking,
|
| 48 |
+
title={Smart Parking Detection...},
|
| 49 |
+
author={Yunganina Mamani, Gary Fernando},
|
| 50 |
+
year={2026}
|
| 51 |
+
}
|
| 52 |
+
```
|