star092304/traffic-sign-detection-vietnam-yolo
260
๐ฆ Traffic Sign Detection โ Vietnam (YOLO11s)
 
YOLO11s model trained on the Vietnam Traffic Sign Detection dataset.
Evaluation Results
Below is the summary of the evaluation results from evalution/summary.json:
Visualizations
Training Curves
Results
Random Predictions (Inference)
Files
Quick Start
from ultralytics import YOLO
# PyTorch
model = YOLO("best.pt")
results = model("image.jpg", conf=0.25)
results[0].show()
# ONNX (faster on CPU)
model_onnx = YOLO("best.onnx")
results = model_onnx("image.jpg")CLI Inference
python infer.py --source image.jpg
python infer.py --source video.mp4 --save
python infer.py --source 0 --show # webcamTraining Details
- Base model: yolo11s.pt (pretrained COCO)
- Early stopping: patience=20
- Dataset cache: enabled (faster I/O)
- Seed: 42 (reproducible)
- Optimizer: auto (AdamW)
