Datasets:
ltg
/

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
vmkhlv commited on
Commit
6fd1315
·
verified ·
1 Parent(s): 5178355

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -0
README.md CHANGED
@@ -57,4 +57,108 @@ configs:
57
  data_files:
58
  - split: test
59
  path: nn/test-*
 
 
 
 
 
 
 
 
 
60
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  data_files:
58
  - split: test
59
  path: nn/test-*
60
+ license: mit
61
+ task_categories:
62
+ - question-answering
63
+ language:
64
+ - nb
65
+ - nn
66
+ pretty_name: NRK-Quiz-QA
67
+ size_categories:
68
+ - 1K<n<10K
69
  ---
70
+
71
+ # Dataset Card for NRK-Quiz-QA
72
+
73
+ ## Dataset Details
74
+
75
+ ### Dataset Description
76
+
77
+ NRK-Quiz-QA is a multiple-choice question answering (QA) dataset designed for zero-shot evaluation of language models' Norwegian-specific and world knowledge. It comprises 4.9k examples from over 500 quizzes on Norwegian language and culture, spanning both written standards of Norwegian: Bokmål and Nynorsk (the minority variant). These quizzes are sourced from NRK, the national public broadcaster in Norway. Each example includes a question and 2 to 5 answer choices.
78
+
79
+ NRK-Quiz-QA is part of the collection of Norwegian QA datasets, which also includes: [NorOpenBookQA](https://huggingface.co/datasets/ltg/noropenbookqa), [NorCommonSenseQA](https://huggingface.co/datasets/ltg/norcommonsenseqa), [NorTruthfulQA (Multiple Choice)](https://huggingface.co/datasets/ltg/nortruthfulqa_mc), and [NorTruthfulQA (Generation)](https://huggingface.co/datasets/ltg/nortruthfulqa_gen). We describe our high-level dataset creation approach here and provide more details, general statistics, and model evaluation results in our paper.
80
+
81
+ - **Curated by:** The [Language Technology Group](https://www.mn.uio.no/ifi/english/research/groups/ltg/) (LTG) at the University of Oslo
82
+ - **Shared by:** NRK through initial contact by Språkbanken.
83
+ - **Language:** Norwegian (Bokmål and Nynorsk)
84
+ - **Repository:** [github.com/ltgoslo/norqa](https://github.com/ltgoslo/norqa)
85
+ - **Paper:** [arxiv.org/abs/2501.11128](https://arxiv.org/abs/2501.11128) (to be presented at NoDaLiDa/Baltic-HLT 2025)
86
+ - **License:** MIT
87
+
88
+
89
+ ### Uses
90
+
91
+ NRK-Quiz-QA is intended to be used for zero-shot evaluation of language models for Norwegian.
92
+
93
+
94
+ ## Dataset Creation
95
+
96
+ NRK-Quiz-QA is based on a collection of quizzes from between the years of 2017 and 2024, provided by NRK. The quiz data is of high quality, but we perform a targeted adaptation to ensure correct time references. This annotation stage is performed by three students in linguistics and computer science, all native Norwegian speakers. Two annotators work on Bokmål, and one annotator works on Nynorsk. There are three main curation aspects:
97
+
98
+ 1. **Temporal adjustment**: The annotators adjust temporal references to fit the current time.
99
+ 2. **Content filtering**: The annotators discard examples requiring images or sounds for answering.
100
+ 3. **Data cleaning**: The annotators remove unnecessary text segments (e.g., web page artifacts), and irrelevant content in the questions (e.g., comments that guide the user through the quiz).
101
+
102
+
103
+ #### Personal and Sensitive Information
104
+
105
+ The data does not contain information considered personal or sensitive.
106
+
107
+
108
+ ## Dataset Structure
109
+
110
+ ### Dataset Instances
111
+
112
+ Each dataset instance looks as follows:
113
+
114
+ #### Bokmål
115
+
116
+ ```
117
+ {
118
+ 'id': '1.16235578-6',
119
+ 'question': 'Juletrefester er moro for kidsa. I sin tid bidro festene også til å spre den juletreskikken vi kjenner i dag. Vet du i hvilket århundre juletreet meldte sin ankomst i Norge?',
120
+ 'choices': {
121
+ 'label': ['A', 'B', 'C'],
122
+ 'text': ['1900-tallet', '1800-tallet', '1700-tallet']
123
+ },
124
+ 'answer': 'B',
125
+ 'quiz': 'Romjulsquiz',
126
+ 'curated': True
127
+ }
128
+ ```
129
+
130
+ #### Nynorsk
131
+
132
+ ```
133
+ {
134
+ 'id': '1.14319825-6b',
135
+ 'question': 'Sogndal spelte i førstedivisjon i 2019, etter at dei tapte 3–1 borte mot Aalesund i kvalifiseringskampen. Men kven scora Sogndal sitt mål?',
136
+ 'choices': {
137
+ 'label': ['A', 'B', 'C', 'D'],
138
+ 'text': [
139
+ 'Ulrik Flo',
140
+ 'Sigurd Haugen',
141
+ 'Ulrik Fredriksen',
142
+ 'Eirik Birkelund'
143
+ ]
144
+ },
145
+ 'answer': 'C',
146
+ 'quiz': 'Helgequiz frå NRK Sogn og Fjordane',
147
+ 'curated': True
148
+ }
149
+ ```
150
+
151
+ ### Dataset Fields
152
+
153
+ `id`: an example id \
154
+ `question`: a quiz question \
155
+ `choices`: answer choices (`label`: a list of labels; `text`: a list of possible answers) \
156
+ `answer`: the correct answer from the list of labels (A/B/C/D/E) \
157
+ `quiz`: a quiz name \
158
+ `curated`: an indicator of whether an example has been curated or not
159
+
160
+
161
+ ## Dataset Card Contact
162
+
163
+ * Vladislav Mikhailov ([email protected])
164
+ * Lilja Øvrelid ([email protected])