doc
Browse files- README.md +3 -2
- dataset_infos.json +1 -0
README.md
CHANGED
@@ -14,6 +14,7 @@ cd sample
|
|
14 |
https://github.com/rsennrich/wmt16-scripts/tree/master/sample
|
15 |
|
16 |
It was originally used by `transformers` [`finetune_trainer.py`](https://github.com/huggingface/transformers/blob/641f418e102218c4bf16fcd3124bfebed6217ef6/examples/seq2seq/finetune_trainer.py)
|
17 |
-
and resided at https://cdn-datasets.huggingface.co/translation/wmt_en_ro.tar.gz
|
18 |
|
19 |
-
|
|
|
|
|
|
14 |
https://github.com/rsennrich/wmt16-scripts/tree/master/sample
|
15 |
|
16 |
It was originally used by `transformers` [`finetune_trainer.py`](https://github.com/huggingface/transformers/blob/641f418e102218c4bf16fcd3124bfebed6217ef6/examples/seq2seq/finetune_trainer.py)
|
|
|
17 |
|
18 |
+
The data itself resides https://cdn-datasets.huggingface.co/translation/wmt_en_ro.tar.gz
|
19 |
+
|
20 |
+
If you would like to convert it to jsonlines I've included a small script `convert-to-jsonlines.py` that will do it for you. But if you're using the `datasets` API, it will be done on the fly.
|
dataset_infos.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"enro": {"description": "WMT16 English-Romanian Translation Data with further preprocessing", "citation": "@InProceedings{huggingface:dataset,\ntitle = {WMT16 English-Romanian Translation Data with further preprocessing},\nauthors={},\nyear={2016}\n}\n", "homepage": "http://www.statmt.org/wmt16/", "license": "", "features": {"translation": {"languages": ["en", "ro"], "id": null, "_type": "Translation"}}, "post_processed": null, "supervised_keys": {"input": "en", "output": "ro"}, "builder_name": "wmt16_en_ro_pre_processed", "config_name": "enro", "version": {"version_str": "1.1.0", "description": "", "major": 1, "minor": 1, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 188288211, "num_examples": 610320, "dataset_name": "wmt16_en_ro_pre_processed"}, "validation": {"name": "validation", "num_bytes": 561799, "num_examples": 1999, "dataset_name": "wmt16_en_ro_pre_processed"}, "test": {"name": "test", "num_bytes": 539216, "num_examples": 1999, "dataset_name": "wmt16_en_ro_pre_processed"}}, "download_checksums": {"https://cdn-datasets.huggingface.co/translation/wmt_en_ro.tar.gz": {"num_bytes": 60043891, "checksum": "1f78fae1faac609a0b32ce0ea4bf9b01a5a4e60354207e2071535acca3275af7"}}, "download_size": 60043891, "post_processing_size": null, "dataset_size": 189389226, "size_in_bytes": 249433117}}
|