Datasets:

License:
5roop commited on
Commit
ad72d35
1 Parent(s): f3c6e0a
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -30,7 +30,7 @@ full_dataset = datasets.concatenate_datasets([d for d in dict_of_datasets.values
30
  A single split can be taken as well, but note that this means all the splits will be downloaded and generated, which can take a long time:
31
  ```python
32
  import datasets
33
- riznica_ = datasets.load_dataset("classla/xlm-r-bertic-data", split="riznica")
34
  ```
35
 
36
  To circumvent this one option is using streaming:
@@ -44,4 +44,4 @@ for i in riznica.take(2):
44
  # {'text': 'PRAGMATIČARI DOGMATI SANJARI'}
45
  # {'text': 'Ivica Župan'}
46
  ```
47
- Read more on streamig [here](https://huggingface.co/docs/datasets/stream).
 
30
  A single split can be taken as well, but note that this means all the splits will be downloaded and generated, which can take a long time:
31
  ```python
32
  import datasets
33
+ riznica = datasets.load_dataset("classla/xlm-r-bertic-data", split="riznica")
34
  ```
35
 
36
  To circumvent this one option is using streaming:
 
44
  # {'text': 'PRAGMATIČARI DOGMATI SANJARI'}
45
  # {'text': 'Ivica Župan'}
46
  ```
47
+ Read more on streaming [here](https://huggingface.co/docs/datasets/stream).