sadrasabouri commited on
Commit
ea4f6ec
1 Parent(s): 44d2080

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -50,6 +50,20 @@ _[If you want to join our community to keep up with news, models and datasets fr
50
 
51
  This is the raw (uncleaned) version of the [naab](https://huggingface.co/datasets/SLPL/naab) corpus. You can use also customize our [preprocess script](https://github.com/Sharif-SLPL/t5-fa/tree/main/preprocess) and make your own cleaned corpus. This repository is a hub for all Farsi corpora. Feel free to add your corpus following the [contribution guidelines](#contribution-guideline).
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  ### Supported Tasks and Leaderboards
54
 
55
  This corpus can be used for training all language models trained by Masked Language Modeling (MLM) or any other self-supervised objective.
 
50
 
51
  This is the raw (uncleaned) version of the [naab](https://huggingface.co/datasets/SLPL/naab) corpus. You can use also customize our [preprocess script](https://github.com/Sharif-SLPL/t5-fa/tree/main/preprocess) and make your own cleaned corpus. This repository is a hub for all Farsi corpora. Feel free to add your corpus following the [contribution guidelines](#contribution-guideline).
52
 
53
+ You can download the dataset by the command below:
54
+ ```python
55
+ from datasets import load_dataset
56
+
57
+ dataset = load_dataset("SLPL/naab-raw")
58
+ ```
59
+
60
+ If you wanted to download a specific part of the corpus you can set the config name to the dataset name:
61
+ ```python
62
+ from datasets import load_dataset
63
+
64
+ dataset = load_dataset("SLPL/naab-raw", "DATASET_NAME")
65
+ ```
66
+
67
  ### Supported Tasks and Leaderboards
68
 
69
  This corpus can be used for training all language models trained by Masked Language Modeling (MLM) or any other self-supervised objective.