File size: 1,201 Bytes
b7dff6f
 
 
d69a553
 
a655d94
d69a553
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b7dff6f
 
eb81842
3ca8609
8f4e405
3ca8609
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
language:
- fa
task_categories:
- image-to-text
pretty_name: PersianLicensePlate
dataset_info:
  features:
  - name: image_path
    dtype: image
  - name: label
    dtype: string
  splits:
  - name: train
    num_bytes: 65692734.436
    num_examples: 7962
  - name: test
    num_bytes: 8196570.0
    num_examples: 995
  - name: validation
    num_bytes: 8582160.0
    num_examples: 996
  download_size: 84630626
  dataset_size: 82471464.43599999
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
  - split: validation
    path: data/validation-*
---

> Dataset is downloaded from [here](https://ceit.aut.ac.ir/~keyvanrad/download/ML971/project/) which was provided at Amirkabir University of Technology.
> The dataset is labeled by the authors.
> Experimental results show that the fine-tuned model works well in Persian License Plate.

## Usage
You can download the dataset easily using HF datasets package in Python:
```
!pip install datasets
```
```python
from datasets import load_dataset
dataset = load_dataset("hezarai/persian-license-plate-v1", split="train")  # Other splits: validation, test
print(dataset[0])
```