arxyzan commited on
Commit
deef7ae
1 Parent(s): f0106ed

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -1
README.md CHANGED
@@ -9,4 +9,22 @@ pretty_name: ParsynthOCR-200K
9
  size_categories:
10
  - 100K<n<1M
11
  ---
12
- ParsynthOCR is a synthetic dataset for Persian OCR. This version is a preview of the original 4 million samples dataset (ParsynthOCR-4M).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  size_categories:
10
  - 100K<n<1M
11
  ---
12
+ ParsynthOCR is a synthetic dataset for Persian OCR. This version is a preview of the original 4 million samples dataset (ParsynthOCR-4M).
13
+
14
+ # Usage
15
+ ## 🤗 Datasets
16
+ ```python
17
+ from datasets import load_dataset
18
+
19
+ dataset = load_dataset("hezarai/parsynth-ocr-200k")
20
+ ```
21
+
22
+ ## Hezar
23
+ ```
24
+ pip install hezar
25
+ ```
26
+ ```python
27
+ from hezar.data import Dataset
28
+
29
+ dataset = Dataset.load("hezarai/parsynth-ocr-200k", split="train")
30
+ ```