Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
s-conia commited on
Commit
0132d91
1 Parent(s): d5a631d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +96 -3
README.md CHANGED
@@ -1,3 +1,96 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - it
7
+ - en
8
+ size_categories:
9
+ - 1K<n<10K
10
+ configs:
11
+ - config_name: default
12
+ data_files:
13
+ - split: validation
14
+ path: sciq.validation.json
15
+ - split: test
16
+ path: sciq.test.json
17
+ ---
18
+
19
+ # SciQ - Italian (IT)
20
+ This dataset is an Italian translation of [SciQ](https://arxiv.org/abs/1707.06209). SciQ is a dataset for scientific questions, which were semi-automatically generated from an existing set of questions. The dataset is designed to test the ability of models to answer questions that require scientific knowledge.
21
+
22
+ ## Dataset Details
23
+ The dataset consists of science-related questions, where each question is associated with a correct answer and three possible distractors. The task is to predict the correct answer to the question. The dataset also provides a support passage for most questions, which can be used to answer the question.
24
+
25
+ The dataset includes the following splits:
26
+ * Validation: 960 rows
27
+ * Test: 956 rows
28
+
29
+ ### Differences with the original dataset
30
+ * The number of instances in this dataset is smaller than the original dataset due to the translation process, during which some instances were filtered out.
31
+
32
+ ### Languages
33
+ This dataset is **fully parallel** between English and Italian. This allows us to have comparable evaluation setups and results across the two languages.
34
+
35
+ ### Translation Process
36
+ The translation has been carried out using [🍱 OBenTO-LLM](https://github.com/c-simone/llm-data-translation), an open-source tool for LLM-based translation.
37
+ The main motivation for using an open-source LLM is to encourage free, open, reproducible, and transparent research in LLM evaluation.
38
+ See [🍱 OBenTO-LLM](https://github.com/c-simone/llm-data-translation) for more details on the translation process.
39
+
40
+ ### Other Information
41
+ - **Original dataset by:** [Welbl et al.](https://arxiv.org/abs/1707.06209)
42
+ - **Translation by:** [Simone Conia](https://scholar.google.com/citations?user=S1tqbTcAAAAJ)
43
+ - **Languages:** Italian, English
44
+ - **License:** Apache 2.0
45
+
46
+ ## Dataset Format
47
+ This is an example that shows the format of the dataset, where:
48
+ * `id`: a unique ID for each sample;
49
+ * `category`: type of task;
50
+ * `input_text`: the original English sentence in the dataset;
51
+ * `input_text_translation`: the translation of the sentence in Italian;
52
+ * `choices`: the original English choices;
53
+ * `choice_translations`: the translation of the choices in Italian;
54
+ * `label`: the index of the correct answer.
55
+ * `metadata`: additional information about the question, including the correct answer, the explanation of how to solve the problem, and the annotated explanation.
56
+
57
+ #### Example of a question in SciQ
58
+ ```json
59
+ {
60
+ "id": "sciq_2",
61
+ "category": "question",
62
+ "input_text": "A frameshift mutation is a deletion or insertion of one or more of what that changes the reading frame of the base sequence?",
63
+ "input_text_translation": "Una mutazione frameshift è una delezione o un'inserzione di uno o più di cosa che cambia il quadro di lettura della sequenza di basi?",
64
+ "choices": [
65
+ "Nucleotides.",
66
+ "Proteins.",
67
+ "Carotenoids.",
68
+ "Genes."
69
+ ],
70
+ "choice_translations": [
71
+ "Nucleotidi.",
72
+ "Proteine.",
73
+ "Carotenoidi.",
74
+ "Geni."
75
+ ],
76
+ "label": 0,
77
+ "metadata": {
78
+ "passage": "A frameshift mutation is a deletion or insertion of one or more nucleotides that changes the reading frame of the base sequence. Deletions remove nucleotides, and insertions add nucleotides. Consider the following sequence of bases in RNA:.",
79
+ "passage_translation": "Una mutazione di spostamento del marcatore è una eliminazione o un'inserzione di uno o più nucleotidi che cambia il marcatore di lettura della sequenza di basi. Le eliminazioni rimuovono i nucleotidi e le inserzioni ne aggiungono. Considerate la seguente sequenza di basi in RNA:."
80
+ }
81
+ }
82
+ ```
83
+
84
+ ## License
85
+ The dataset is distributed under the Apache 2.0 license.
86
+
87
+ ## Acknowledgements
88
+ I would like to thank the authors of the original Winogrande dataset for making it available to the research community.
89
+ I would also like to thank [Future AI Research](https://future-ai-research.it/) for supporting this work and funding my research.
90
+
91
+ ### Special Thanks
92
+ My special thanks go to:
93
+ * Pere-Lluís Huguet Cabot and Riccardo Orlando for their help with [🍱 OBenTO-LLM](https://github.com/c-simone/llm-data-translation).
94
+
95
+ ## Dataset Card Authors
96
+ * [Simone Conia](https://scholar.google.com/citations?user=S1tqbTcAAAAJ): [email protected]