tydi_qa
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
TyDi QA는 204K 질문-답변 쌍이 있는 11개의 유형학적으로 다양한 언어를 다루는 질문 응답 데이터 세트입니다. TyDi QA의 언어는 유형학(각 언어가 표현하는 언어적 특징 집합)과 관련하여 다양하므로 이 집합에서 잘 작동하는 모델이 전 세계 많은 언어에 걸쳐 일반화될 것으로 기대합니다. 영어 전용 말뭉치에서는 볼 수 없는 언어 현상이 포함되어 있습니다. 현실적인 정보 탐색 작업을 제공하고 프라이밍 효과를 피하기 위해 답을 알고 싶지만 아직 답을 모르는 사람들이 질문을 작성하고(SQuAD 및 그 자손과 달리) 데이터는 각 언어로 직접 수집됩니다. 번역을 사용하지 않습니다(MLQA 및 XQuAD와 달리).
교육 분할:
'train': 원래 언어로 레이블이 지정된 교육 데이터가 있는 원본 TyDi QA 논문[ https://arxiv.org/abs/2003.05002 ]의 GoldP 작업입니다.
'translate-train-*': 이러한 분할은 XTREME 논문[ https://arxiv.org/abs/2003.11080 ]의 translate-train 기준선에 사용된 영어에서 각 대상 언어로의 자동 번역입니다. 이는 원래 언어 데이터를 사용할 수 없고 시스템 빌더가 레이블이 지정된 영어 데이터와 기존 기계 번역 시스템에 의존해야 하는 전이 학습 시나리오를 시뮬레이션하기 위해 영어가 아닌 TyDiQA-GoldP 교육 데이터를 의도적으로 무시합니다.
일반적으로 기차 또는 번역-열 분할 중 하나를 사용해야 하지만 둘 다 사용할 수는 없습니다.
나뉘다 | 예 |
---|
'train' | 49,881 |
'translate-train-ar' | 3,661 |
'translate-train-bn' | 3,585 |
'translate-train-fi' | 3,670 |
'translate-train-id' | 3,667 |
'translate-train-ko' | 3,607 |
'translate-train-ru' | 3,394 |
'translate-train-sw' | 3,622 |
'translate-train-te' | 3,658 |
'validation' | 5,077 |
'validation-ar' | 921 |
'validation-bn' | 113 |
'validation-en' | 440 |
'validation-fi' | 782 |
'validation-id' | 565 |
'validation-ko' | 276 |
'validation-ru' | 812 |
'validation-sw' | 499 |
'validation-te' | 669 |
FeaturesDict({
'answers': Sequence({
'answer_start': int32,
'text': Text(shape=(), dtype=string),
}),
'context': Text(shape=(), dtype=string),
'id': string,
'question': Text(shape=(), dtype=string),
'title': Text(shape=(), dtype=string),
})
특징 | 수업 | 모양 | D타입 | 설명 |
---|
| 풍모Dict | | | |
답변 | 순서 | | | |
답변/answer_start | 텐서 | | int32 | |
답변/텍스트 | 텍스트 | | 끈 | |
문맥 | 텍스트 | | 끈 | |
ID | 텐서 | | 끈 | |
의문 | 텍스트 | | 끈 | |
제목 | 텍스트 | | 끈 | |
@article{tydiqa,
title = {TyDi QA: A Benchmark for Information-Seeking Question Answering in Typologically Diverse Languages},
author = {Jonathan H. Clark and Eunsol Choi and Michael Collins and Dan Garrette and Tom Kwiatkowski and Vitaly Nikolaev and Jennimaria Palomaki}
year = {2020},
journal = {Transactions of the Association for Computational Linguistics}
}
tydi_qa/goldp(기본 구성)
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2022-12-06(UTC)
[null,null,["최종 업데이트: 2022-12-06(UTC)"],[],[],null,["# tydi_qa\n\n\u003cbr /\u003e\n\n- **Description**:\n\nTyDi QA is a question answering dataset covering 11 typologically diverse\nlanguages with 204K question-answer pairs. The languages of TyDi QA are diverse\nwith regard to their typology -- the set of linguistic features that each\nlanguage expresses -- such that we expect models performing well on this set to\ngeneralize across a large number of the languages in the world. It contains\nlanguage phenomena that would not be found in English-only corpora. To provide a\nrealistic information-seeking task and avoid priming effects, questions are\nwritten by people who want to know the answer, but don't know the answer yet,\n(unlike SQuAD and its descendents) and the data is collected directly in each\nlanguage without the use of translation (unlike MLQA and XQuAD).\n| **Important:** Please choose your training split carefully.\n\nTraining splits:\n\n'train': This is the GoldP task from the original TyDi QA paper\n\\[\u003chttps://arxiv.org/abs/2003.05002\u003e\\] that has original-language labeled training\ndata.\n\n'translate-train-\\*': These splits are the automatic translations from English to\neach target language used in the translate-train baselines in the XTREME paper\n\\[\u003chttps://arxiv.org/abs/2003.11080\u003e\\]. This purposefully ignores the non-English\nTyDiQA-GoldP training data to simulate the transfer learning scenario where\noriginal-language data is not available and system builders must rely on labeled\nEnglish data plus existing machine translation systems.\n\nTypically, you should use EITHER the train or translate-train split, but not\nboth.\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/tydi-qa)\n\n- **Config description** : Gold passage (GoldP) task\n (\u003chttps://github.com/google-research-datasets/tydiqa/tree/master/gold_passage_baseline\u003e).\n\n- **Homepage** :\n \u003chttps://github.com/google-research-datasets/tydiqa\u003e\n\n- **Source code** :\n [`tfds.question_answering.TydiQA`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/question_answering/tydi_qa.py)\n\n- **Versions**:\n\n - **`3.0.0`** (default): Fixes issue with a number of examples where answer spans are misaligned due to context white-space removal. This change impacts roughly 25% of train and dev examples.\n- **Download size** : `121.30 MiB`\n\n- **Dataset size** : `98.35 MiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n Yes\n\n- **Splits**:\n\n| Split | Examples |\n|------------------------|----------|\n| `'train'` | 49,881 |\n| `'translate-train-ar'` | 3,661 |\n| `'translate-train-bn'` | 3,585 |\n| `'translate-train-fi'` | 3,670 |\n| `'translate-train-id'` | 3,667 |\n| `'translate-train-ko'` | 3,607 |\n| `'translate-train-ru'` | 3,394 |\n| `'translate-train-sw'` | 3,622 |\n| `'translate-train-te'` | 3,658 |\n| `'validation'` | 5,077 |\n| `'validation-ar'` | 921 |\n| `'validation-bn'` | 113 |\n| `'validation-en'` | 440 |\n| `'validation-fi'` | 782 |\n| `'validation-id'` | 565 |\n| `'validation-ko'` | 276 |\n| `'validation-ru'` | 812 |\n| `'validation-sw'` | 499 |\n| `'validation-te'` | 669 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'answers': Sequence({\n 'answer_start': int32,\n 'text': Text(shape=(), dtype=string),\n }),\n 'context': Text(shape=(), dtype=string),\n 'id': string,\n 'question': Text(shape=(), dtype=string),\n 'title': Text(shape=(), dtype=string),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|----------------------|--------------|-------|--------|-------------|\n| | FeaturesDict | | | |\n| answers | Sequence | | | |\n| answers/answer_start | Tensor | | int32 | |\n| answers/text | Text | | string | |\n| context | Text | | string | |\n| id | Tensor | | string | |\n| question | Text | | string | |\n| title | Text | | string | |\n\n- **Supervised keys** (See\n [`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):\n `None`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n Not supported.\n\n- **Examples**\n ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples... \n\n- **Citation**:\n\n @article{tydiqa,\n title = {TyDi QA: A Benchmark for Information-Seeking Question Answering in Typologically Diverse Languages},\n author = {Jonathan H. Clark and Eunsol Choi and Michael Collins and Dan Garrette and Tom Kwiatkowski and Vitaly Nikolaev and Jennimaria Palomaki}\n year = {2020},\n journal = {Transactions of the Association for Computational Linguistics}\n }\n\ntydi_qa/goldp (default config)\n------------------------------"]]