arxyzan commited on
Commit
3ca8609
·
verified ·
1 Parent(s): b635613

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
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 datas then labeled by the authors.
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
+ ```