Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1783,10 +1783,10 @@ or filter Common Corpus yourself.
|
|
| 1783 |
from datasets import load_dataset
|
| 1784 |
|
| 1785 |
# load the full dataset
|
| 1786 |
-
dataset = load_dataset('Rijgersberg/common_corpus_nl', 'all')
|
| 1787 |
|
| 1788 |
# load only a specific subset
|
| 1789 |
-
wikipedia = load_dataset('Rijgersberg/common_corpus_nl', 'Open Web-Wikipedia')
|
| 1790 |
```
|
| 1791 |
|
| 1792 |
## Contents
|
|
|
|
| 1783 |
from datasets import load_dataset
|
| 1784 |
|
| 1785 |
# load the full dataset
|
| 1786 |
+
dataset = load_dataset('Rijgersberg/common_corpus_nl', 'all', split='train')
|
| 1787 |
|
| 1788 |
# load only a specific subset
|
| 1789 |
+
wikipedia = load_dataset('Rijgersberg/common_corpus_nl', 'Open Web-Wikipedia', split='train')
|
| 1790 |
```
|
| 1791 |
|
| 1792 |
## Contents
|