Update README.md
Browse files
README.md
CHANGED
|
@@ -76,7 +76,7 @@ Load with the `datasets` library:
|
|
| 76 |
```python
|
| 77 |
from datasets import load_dataset
|
| 78 |
|
| 79 |
-
ds = load_dataset("
|
| 80 |
|
| 81 |
# ds[i]["text"] is the full article body as a single string
|
| 82 |
|
|
@@ -92,7 +92,7 @@ Streaming for environments where the ~10 GB download is inconvenient:
|
|
| 92 |
from datasets import load_dataset
|
| 93 |
|
| 94 |
ds = load_dataset(
|
| 95 |
-
"
|
| 96 |
split="train",
|
| 97 |
streaming=True,
|
| 98 |
)
|
|
@@ -130,7 +130,7 @@ cleaning scripts is published alongside this dataset.
|
|
| 130 |
7. **Stream-write** to JSONL, one article per line.
|
| 131 |
|
| 132 |
A 7.6 GB compressed `.xml.bz2` produces a ~10 GB cleaned JSONL of
|
| 133 |
-
approximately
|
| 134 |
2–4 hours on a single CPU.
|
| 135 |
|
| 136 |
## License and attribution
|
|
|
|
| 76 |
```python
|
| 77 |
from datasets import load_dataset
|
| 78 |
|
| 79 |
+
ds = load_dataset("gmrrh/de-wiki", split="train")
|
| 80 |
|
| 81 |
# ds[i]["text"] is the full article body as a single string
|
| 82 |
|
|
|
|
| 92 |
from datasets import load_dataset
|
| 93 |
|
| 94 |
ds = load_dataset(
|
| 95 |
+
"gmrrh/de-wiki",
|
| 96 |
split="train",
|
| 97 |
streaming=True,
|
| 98 |
)
|
|
|
|
| 130 |
7. **Stream-write** to JSONL, one article per line.
|
| 131 |
|
| 132 |
A 7.6 GB compressed `.xml.bz2` produces a ~10 GB cleaned JSONL of
|
| 133 |
+
approximately 1.8 million articles, with an end-to-end runtime of roughly
|
| 134 |
2–4 hours on a single CPU.
|
| 135 |
|
| 136 |
## License and attribution
|