Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -34,5 +34,16 @@ configs:
|
|
34 |
---
|
35 |
|
36 |
> Dataset is downloaded from [here](https://ceit.aut.ac.ir/~keyvanrad/download/ML971/project/) which was provided at Amirkabir University of Technology.
|
37 |
-
> The
|
38 |
> Experimental results show that the fine-tuned model works well in Persian License Plate.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
---
|
35 |
|
36 |
> Dataset is downloaded from [here](https://ceit.aut.ac.ir/~keyvanrad/download/ML971/project/) which was provided at Amirkabir University of Technology.
|
37 |
+
> The dataset is labeled by the authors.
|
38 |
> Experimental results show that the fine-tuned model works well in Persian License Plate.
|
39 |
+
|
40 |
+
## Usage
|
41 |
+
You can download the dataset easily using HF datasets package in Python:
|
42 |
+
```
|
43 |
+
!pip install datasets
|
44 |
+
```
|
45 |
+
```python
|
46 |
+
from datasets import load_dataset
|
47 |
+
dataset = load_dataset("hezarai/persian-license-plate-v1", split="train") # Other splits: validation, test
|
48 |
+
print(dataset[0])
|
49 |
+
```
|