RoboVAI Vision & Applied AI Ecosystem
Collection
Flagship Computer Vision models, ALPR systems, and Document AI datasets by Mohamed Shaban Ibrahim β’ 9 items β’ Updated
This YOLOv5 checkpoint has been fine-tuned on localized vehicle imagery for high-precision License Plate Detection (ALPR) across Egyptian roads, gates, and parking checkpoints.
import torch
from huggingface_hub import hf_hub_download
# 1. Download weights from Hugging Face Hub
model_path = hf_hub_download(repo_id="moshabann/yolov5-alpr-egypt", filename="detection_best.pt")
# 2. Load custom YOLOv5 model
model = torch.hub.load('ultralytics/yolov5', 'custom', path=model_path)
# 3. Perform inference
results = model('car_sample.jpg')
# 4. View results
results.print()
results.show()
For complete alphanumeric text extraction and 14-digit National ID decoding:
pip install robovai-ocr