patrickvonplaten
commited on
Commit
•
2de4625
1
Parent(s):
12f32fd
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## TODO
|
2 |
+
|
3 |
+
The dataset script logic is more or less ready, but we still need to download all the data files - so far this has been done only for the file:
|
4 |
+
`https://opendata.iisys.de/systemintegration/Datasets/CommonCrawl/head/de_head_0000_2015-48.tar.gz`
|
5 |
+
|
6 |
+
You can already use the script to download the data in this file as follows:
|
7 |
+
|
8 |
+
```python
|
9 |
+
from datasets import load_dataset
|
10 |
+
ds = load_dataset("flax-community/german_common_crawl", "first")
|
11 |
+
```
|
12 |
+
|
13 |
+
Now we need to convert all other files correctly. It should be as simple as:
|
14 |
+
|
15 |
+
a) Cloning this repo with `git lfs`
|