Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
Italian
Size:
10K - 100K
License:
Update files from the datasets library (from 1.8.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.8.0
- README.md +22 -3
- dataset_infos.json +1 -1
- squad_it.py +6 -0
README.md
CHANGED
@@ -1,4 +1,23 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
paperswithcode_id: squad-it
|
3 |
---
|
4 |
|
@@ -91,9 +110,9 @@ The data fields are the same among all splits.
|
|
91 |
|
92 |
### Data Splits
|
93 |
|
94 |
-
| name
|
95 |
-
|
96 |
-
|default|54159|7609|
|
97 |
|
98 |
## Dataset Creation
|
99 |
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- machine-generated
|
4 |
+
language_creators:
|
5 |
+
- machine-generated
|
6 |
+
languages:
|
7 |
+
- it-IT
|
8 |
+
licenses:
|
9 |
+
- unknown
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
size_categories:
|
13 |
+
- unknown
|
14 |
+
source_datasets:
|
15 |
+
- extended|squad
|
16 |
+
task_categories:
|
17 |
+
- question-answering
|
18 |
+
task_ids:
|
19 |
+
- open-domain-qa
|
20 |
+
- extractive-qa
|
21 |
paperswithcode_id: squad-it
|
22 |
---
|
23 |
|
|
|
110 |
|
111 |
### Data Splits
|
112 |
|
113 |
+
| name | train | test |
|
114 |
+
| ------- | ----: | ---: |
|
115 |
+
| default | 54159 | 7609 |
|
116 |
|
117 |
## Dataset Creation
|
118 |
|
dataset_infos.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"default": {"description": "SQuAD-it is derived from the SQuAD dataset and it is obtained through semi-automatic translation of the SQuAD dataset
|
|
|
1 |
+
{"default": {"description": "SQuAD-it is derived from the SQuAD dataset and it is obtained through semi-automatic translation of the SQuAD dataset\ninto Italian. It represents a large-scale dataset for open question answering processes on factoid questions in Italian.\n The dataset contains more than 60,000 question/answer pairs derived from the original English dataset. The dataset is\n split into training and test sets to support the replicability of the benchmarking of QA systems:\n", "citation": "@InProceedings{10.1007/978-3-030-03840-3_29,\n author={Croce, Danilo and Zelenanska, Alexandra and Basili, Roberto},\n editor={Ghidini, Chiara and Magnini, Bernardo and Passerini, Andrea and Traverso, Paolo\",\n title={Neural Learning for Question Answering in Italian},\n booktitle={AI*IA 2018 -- Advances in Artificial Intelligence},\n year={2018},\n publisher={Springer International Publishing},\n address={Cham},\n pages={389--402},\n isbn={978-3-030-03840-3}\n}\n", "homepage": "https://github.com/crux82/squad-it", "license": "", "features": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "answers": {"feature": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "answer_start": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": [{"task": "question-answering-extractive", "question_column": "question", "context_column": "context", "answers_column": "answers"}], "builder_name": "squad_it", "config_name": "default", "version": {"version_str": "0.1.0", "description": null, "major": 0, "minor": 1, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 50864824, "num_examples": 54159, "dataset_name": "squad_it"}, "test": {"name": "test", "num_bytes": 7858336, "num_examples": 7609, "dataset_name": "squad_it"}}, "download_checksums": {"https://github.com/crux82/squad-it/raw/master/SQuAD_it-train.json.gz": {"num_bytes": 7725286, "checksum": "75d4d2832961f7a0f76a43d7e919e56a880ccc55de434ec90ae82cd67bec5d25"}, "https://github.com/crux82/squad-it/raw/master/SQuAD_it-test.json.gz": {"num_bytes": 1051245, "checksum": "25986c617cc7d58e82e916755b8a5684e5efae69835332858a6534a304cd293c"}}, "download_size": 8776531, "post_processing_size": null, "dataset_size": 58723160, "size_in_bytes": 67499691}}
|
squad_it.py
CHANGED
@@ -4,6 +4,7 @@
|
|
4 |
import json
|
5 |
|
6 |
import datasets
|
|
|
7 |
|
8 |
|
9 |
# TODO(squad_it): BibTeX citation
|
@@ -69,6 +70,11 @@ class SquadIt(datasets.GeneratorBasedBuilder):
|
|
69 |
# Homepage of the dataset for documentation
|
70 |
homepage="https://github.com/crux82/squad-it",
|
71 |
citation=_CITATION,
|
|
|
|
|
|
|
|
|
|
|
72 |
)
|
73 |
|
74 |
def _split_generators(self, dl_manager):
|
|
|
4 |
import json
|
5 |
|
6 |
import datasets
|
7 |
+
from datasets.tasks import QuestionAnsweringExtractive
|
8 |
|
9 |
|
10 |
# TODO(squad_it): BibTeX citation
|
|
|
70 |
# Homepage of the dataset for documentation
|
71 |
homepage="https://github.com/crux82/squad-it",
|
72 |
citation=_CITATION,
|
73 |
+
task_templates=[
|
74 |
+
QuestionAnsweringExtractive(
|
75 |
+
question_column="question", context_column="context", answers_column="answers"
|
76 |
+
)
|
77 |
+
],
|
78 |
)
|
79 |
|
80 |
def _split_generators(self, dl_manager):
|