Datasets:
matejklemen
commited on
Commit
•
cd96f89
1
Parent(s):
4489f87
Update the load_dataset call for private version of dataset
Browse files
README.md
CHANGED
@@ -32,7 +32,15 @@ task_ids:
|
|
32 |
|
33 |
This repository by default loads the publicly available dataset ccGigafida, which contains a small subset of the Gigafida/Gigafida2 corpus.
|
34 |
The full datasets are private due to copyright. **If you happen to have access to the full datasets, the script will also work with those.**
|
35 |
-
Instead of
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
**IMPORTANT:** The script will process all `.xml` files in the provided directory and its subdirectories - make sure there are no schema or metadata files in there!
|
37 |
|
38 |
|
|
|
32 |
|
33 |
This repository by default loads the publicly available dataset ccGigafida, which contains a small subset of the Gigafida/Gigafida2 corpus.
|
34 |
The full datasets are private due to copyright. **If you happen to have access to the full datasets, the script will also work with those.**
|
35 |
+
Instead of
|
36 |
+
```
|
37 |
+
datasets.load_dataset("cjvt/cc_gigafida")
|
38 |
+
```
|
39 |
+
please use
|
40 |
+
```
|
41 |
+
datasets.load_dataset("cjvt/cc_gigafida", "private", data_dir="<directory-containing-gigafida(2)-TEI-files>")
|
42 |
+
```
|
43 |
+
|
44 |
**IMPORTANT:** The script will process all `.xml` files in the provided directory and its subdirectories - make sure there are no schema or metadata files in there!
|
45 |
|
46 |
|