Downloads · 30 days
17
17% of all-time downloads
AlessandroFerrante/StreetSignSenseY12s
StreetSignSenseY12s is a object detection model from AlessandroFerrante. Use it when you need objects located in an image. It is set up for ultralytics. The card lists the license as cc-by-4.0.
Downloads · 30 days
17
17% of all-time downloads
All-time downloads
99
Public
Repo size
22.5 MB
Likes
0
Public
Click a slice to open those files.
.pt19 MB · 84%
From the Hugging Face model README
<a href='https://ko-fi.com/I6M022U0D7' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi2.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
</div>Street Sign Sense (YOLO12s) is an object detection model designed to identify and classify traffic signs in real-time. Based on the YOLO12 Small architecture, this model offers a sweet spot between the extreme speed of the Nano version and the higher accuracy of the Medium version and balances high accuracy with computational efficiency, making it suitable for Advanced Driver Assistance Systems (ADAS) research. It has been trained on the custom Street Sign Set, covering 63 distinct classes of traffic signs.
You can test this model instantly in your browser without any setup: 👉 Interactive Web Demo
This model can be used with the Ultralytics framework or the official YOLOv12 repository. It takes an image as input and outputs bounding boxes with class labels and confidence scores.
from ultralytics import YOLO
# Load the model
model = YOLO('path/to/streetsignsense-yolo12s.pt') # Replace with the downloaded model path
# Run inference on an image
results = model.predict(source='path/to/image.jpg')
# Show results
results[0].show()
Inputs: Images (RGB) of various resolutions (model trained at standard YOLO resolutions, e.g., 640x640).
Outputs: List of Results objects containing bounding boxes (xyxy), class IDs, and confidence scores.
/StreetSignSenseY12s
├── .gitattributes
├── README.md
├── streetsignsense-yolo12s.pt
└── metrics/ # metrics image folder
Standalone Model: Yes, this is a standalone object detection model. Input Requirements: Standard RGB images. No specific metadata required. Downstream Dependencies: The output (detected classes and locations) is intended to be used by decision-making logic in ADAS simulations or autonomous driving pipelines.
Hardware: Training was performed on Kaggle Notebooks using NVIDIA GPUs (e.g., Tesla P100 or T4). Software: PyTorch, Ultralytics YOLO framework. Compute:
Fine-tuned: The model was initialized with pre-trained COCO weights (Transfer Learning) and then fine-tuned on the "Street Sign Sense" dataset to specialize in traffic sign detection.
Architecture: YOLOv12s (Small). Characteristics: Balanced architecture. Size: Small size. It offers better feature extraction than the Nano version while maintaining very fast inference speeds.
Precision: Trained using Mixed Precision (AMP). Pruning/Quantization: The uploaded weights are standard FP32/FP16. No post-training quantization has been applied yet.
The model was trained on the Street Sign Set (available on Kaggle).
N/A: The dataset consists of street signs and environmental imagery. No human demographic data is involved or analyzed.
The dataset was split into:


| Precision-Recall | F1 Score |
|---|---|
![]() | ![]() |
| Precision | Recall |
![]() | ![]() |
The model achieves high Mean Average Precision (mAP) on the test set, demonstrating strong capabilities in detecting small objects (traffic signs at a distance) and operating in varied lighting conditions.
Performance is generally consistent across major classes (e.g., Speed Limits, Stop signs). However, classes with significantly fewer samples in the dataset may show slightly lower recall.
Definition: Fairness in this context is defined as the model's ability to detect signs regardless of background clutter or slight occlusions. Results: The model shows robust performance in standard driving scenarios.
Safety: This model is for research and educational purposes (ADAS development). It should not be used as the sole system for controlling a real vehicle on public roads without extensive safety validation and redundancy. Privacy: The dataset focuses on public street signs. Any incidental faces or license plates in the background are not the target of this model.
Email: streetsignsense@alessandroferrante.net
<a href='https://ko-fi.com/I6M022U0D7' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi2.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>