Datasets:

GiliGold commited on
Commit
aec196b
·
verified ·
1 Parent(s): 559a558

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -51,14 +51,14 @@ For more information see: [ArXiv](https://arxiv.org/abs/2405.18115)
51
  For the [All Features Sentences](#all_features_sentences) subset:
52
  ```python
53
  from datasets import load_dataset
54
- knesset_corpus = load_dataset("HaifaCLGroup/knessetCorpus", name="all_features_sentences")
55
 
56
  ```
57
  For the [Non-Morphological Features Sentences](#non-morphological_features_sentences) subset:
58
  * Ideal if morpho-syntactic annotations aren't relevant to your work, providing a less disk space heavy option.
59
  ```python
60
  from datasets import load_dataset
61
- knesset_corpus = load_dataset("HaifaCLGroup/knessetCorpus", name="no_morph_all_features_sentences")
62
 
63
  ```
64
  See [Subsets](#subsets) for other subsets options and change the name field accordingly.
 
51
  For the [All Features Sentences](#all_features_sentences) subset:
52
  ```python
53
  from datasets import load_dataset
54
+ knesset_corpus = load_dataset("HaifaCLGroup/knessetCorpus", name="all_features_sentences", split='train', streaming=True) #streaming is recommended
55
 
56
  ```
57
  For the [Non-Morphological Features Sentences](#non-morphological_features_sentences) subset:
58
  * Ideal if morpho-syntactic annotations aren't relevant to your work, providing a less disk space heavy option.
59
  ```python
60
  from datasets import load_dataset
61
+ knesset_corpus = load_dataset("HaifaCLGroup/knessetCorpus", "no_morph_all_features_sentences", split='train', streaming=True)#streaming is recommended
62
 
63
  ```
64
  See [Subsets](#subsets) for other subsets options and change the name field accordingly.