CoolFace
Datasetpublic

apple/mkqa

We introduce MKQA, an open-domain question answering evaluation set comprising 10k question-answer pairs sampled from the Google Natural Questions dataset, aligned across 26 typologically diverse languages (260k question-answer pairs in total). For each query we collected new passage-independent answers. These queries and answers were then human translated into 25 Non-English languages.

sourceHugging Facecc-by-3.0updated 3y agoView on Hugging Face
42likes729downloads
Dataset Card

Dataset Card for MKQA: Multilingual Knowledge Questions & Answers

Table of Contents

Dataset Description

Dataset Summary

MKQA contains 10,000 queries sampled from the Google Natural Questions dataset.

For each query we collect new passage-independent answers. These queries and answers are then human translated into 25 Non-English languages.

Supported Tasks and Leaderboards

question-answering

Languages

Language codeLanguage name
arArabic
daDanish
deGerman
enEnglish
esSpanish
fiFinnish
frFrench
heHebrew
huHungarian
itItalian
jaJapanese
koKorean
kmKhmer
msMalay
nlDutch
noNorwegian
plPolish
ptPortuguese
ruRussian
svSwedish
thThai
trTurkish
viVietnamese
zh_cnChinese (Simplified)
zh_hkChinese (Hong kong)
zh_twChinese (Traditional)

Dataset Structure

Data Instances

An example from the data set looks as follows:

{
 'example_id': 563260143484355911,
 'queries': {
  'en': "who sings i hear you knocking but you can't come in",
  'ru': "кто поет i hear you knocking but you can't come in",
  'ja': '「 I hear you knocking」は誰が歌っていますか',
  'zh_cn': "《i hear you knocking but you can't come in》是谁演唱的",
  ...
 },
 'query': "who sings i hear you knocking but you can't come in",
 'answers': {'en': [{'type': 'entity',
    'entity': 'Q545186',
    'text': 'Dave Edmunds',
    'aliases': []}],
  'ru': [{'type': 'entity',
    'entity': 'Q545186',
    'text': 'Эдмундс, Дэйв',
    'aliases': ['Эдмундс', 'Дэйв Эдмундс', 'Эдмундс Дэйв', 'Dave Edmunds']}],
  'ja': [{'type': 'entity',
    'entity': 'Q545186',
    'text': 'デイヴ・エドモンズ',
    'aliases': ['デーブ・エドモンズ', 'デイブ・エドモンズ']}],
  'zh_cn': [{'type': 'entity', 'text': '戴维·埃德蒙兹 ', 'entity': 'Q545186'}],
  ...
  },
}

Data Fields

Each example in the dataset contains the unique Natural Questions example_id, the original English query, and then queries and answers in 26 languages. Each answer is labelled with an answer type. The breakdown is:

Answer TypeOccurrence
entity4221
long_answer1815
unanswerable1427
date1174
number485
number_with_unit394
short_phrase346
binary138

For each language, there can be more than one acceptable textual answer, in order to capture a variety of possible valid answers.

Detailed explanation of fields taken from here

when entity field is not available it is set to an empty string ''. when aliases field is not available it is set to an empty list [].

Data Splits

  • Train: 10000

Dataset Creation

Curation Rationale

[More Information Needed]

Source Data

Google Natural Questions dataset

Initial Data Collection and Normalization

[More Information Needed]

Who are the source language producers?

[More Information Needed]

Annotations

Annotation process

[More Information Needed]

Who are the annotators?

[More Information Needed]

Personal and Sensitive Information

[More Information Needed]

Considerations for Using the Data

Social Impact of Dataset

[More Information Needed]

Discussion of Biases

[More Information Needed]

Other Known Limitations

[More Information Needed]

Additional Information

Dataset Curators

[More Information Needed]

Licensing Information

CC BY-SA 3.0

Citation Information

@misc{mkqa,
    title = {MKQA: A Linguistically Diverse Benchmark for Multilingual Open Domain Question Answering},
    author = {Shayne Longpre and Yi Lu and Joachim Daiber},
    year = {2020},
    URL = {https://arxiv.org/pdf/2007.15207.pdf}
}

Contributions

Thanks to @cceyda for adding this dataset.