Datasets:
Size:
10B<n<100B
License:
Fix typo
Browse files
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 |
-
|
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
|
|
|
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).
|