Datasets:
url
#4
by
affahrizain
- opened
- dataset_infos.json +1 -1
- indoqa.py +3 -3
dataset_infos.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"default": {"description": "This dataset is built for question answering task.\n", "citation": "", "homepage": "https://github.com/jakartaresearch", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answer": {"dtype": "string", "id": null, "_type": "Value"}, "category": {"dtype": "string", "id": null, "_type": "Value"}, "span_start": {"dtype": "int16", "id": null, "_type": "Value"}, "span_end": {"dtype": "int16", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "
|
|
|
1 |
+
{"default": {"description": "This dataset is built for question answering task.\n", "citation": "", "homepage": "https://github.com/jakartaresearch", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answer": {"dtype": "string", "id": null, "_type": "Value"}, "category": {"dtype": "string", "id": null, "_type": "Value"}, "span_start": {"dtype": "int16", "id": null, "_type": "Value"}, "span_end": {"dtype": "int16", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "indoqa", "config_name": "default", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 2498184, "num_examples": 3249, "dataset_name": "indoqa"}, "validation": {"name": "validation", "num_bytes": 829416, "num_examples": 1084, "dataset_name": "indoqa"}}, "download_checksums": {"https://drive.google.com/uc?id=1A-EqeT4GEYWv1cgkNnxMV8aTOvTxoMJQ": {"num_bytes": 3022435, "checksum": "3fc22befaf9e24a30d688636bbd7596c4cb09c563b39333fd146a86d785355cd"}, "https://drive.google.com/uc?id=1uWcvrPhPg5YlkWK4HfN7ZxdL8UZ1JJH1": {"num_bytes": 907603, "checksum": "bc4be9bc9ac67f032041d8ce62eb0a395c84e491e468ebdbfb3477d26e191ce1"}}, "download_size": 3930038, "post_processing_size": null, "dataset_size": 3327600, "size_in_bytes": 7257638}}
|
indoqa.py
CHANGED
@@ -27,9 +27,9 @@ This dataset is built for question answering task.
|
|
27 |
"""
|
28 |
|
29 |
_HOMEPAGE = "https://github.com/jakartaresearch"
|
30 |
-
|
31 |
-
_TRAIN_URL = "https://drive.google.com/uc?id=
|
32 |
-
_VAL_URL = "https://drive.google.com/uc?id=
|
33 |
|
34 |
class GooglePlayReview(datasets.GeneratorBasedBuilder):
|
35 |
"""IndoQA: Indonesian Question Answering Dataset."""
|
|
|
27 |
"""
|
28 |
|
29 |
_HOMEPAGE = "https://github.com/jakartaresearch"
|
30 |
+
# https://drive.google.com/file/d/1uWcvrPhPg5YlkWK4HfN7ZxdL8UZ1JJH1/view?usp=sharing
|
31 |
+
_TRAIN_URL = "https://drive.google.com/uc?id=1A-EqeT4GEYWv1cgkNnxMV8aTOvTxoMJQ"
|
32 |
+
_VAL_URL = "https://drive.google.com/uc?id=1uWcvrPhPg5YlkWK4HfN7ZxdL8UZ1JJH1"
|
33 |
|
34 |
class GooglePlayReview(datasets.GeneratorBasedBuilder):
|
35 |
"""IndoQA: Indonesian Question Answering Dataset."""
|