prithivMLmods/Number-Plate-Recognition
Number-Plate-Recognition A lightweight dataset for automatic number plate recognition (ANPR). Each sample contains a vehicle image paired with the vehicle color and the corresponding license plate number in a standardized JSON format. Features Vehicle images Vehicle color annotation License plate text (OCR) JSON formatted labels Suitable for OCR and vision-language model training Label Format { "vehicle_color": "black", "license_plate_number":… See the full description on the dataset page: https://huggingface.co/datasets/prithivMLmods/Number-Plate-Recognition.
141
1---2dataset_info:3 features:4 - name: image5 dtype: image6 - name: response7 dtype: string8 splits:9 - name: train10 num_bytes: 4140734711 num_examples: 22812 download_size: 4140550813 dataset_size: 4140734714configs:15- config_name: default16 data_files:17 - split: train18 path: data/train-*19license: apache-2.020task_categories:21- image-to-text22language:23- en24size_categories:25- n<1K26---27 28# **Number-Plate-Recognition**29 30A lightweight dataset for automatic number plate recognition (ANPR). Each sample contains a vehicle image paired with the vehicle color and the corresponding license plate number in a standardized JSON format.31 32## Features33 34- Vehicle images35- Vehicle color annotation36- License plate text (OCR)37- JSON formatted labels38- Suitable for OCR and vision-language model training39 40## Label Format41 42```json43{44 "vehicle_color": "black",45 "license_plate_number": "77-ZFK-8"46}47```48 49## Use Cases50 51- Automatic Number Plate Recognition (ANPR)52- OCR model training and evaluation53- Vision-language model fine-tuning54- Vehicle attribute extraction55- Multimodal benchmarking56 57## License58 59Apache-2.0