jaqket_cc / README.md
hotchpotch's picture
Update README.md
ca56070 verified
---
license: cc-by-sa-4.0
dataset_info:
features:
- name: qid
dtype: string
- name: question
dtype: string
- name: answers
sequence: string
- name: competition
dtype: string
- name: timestamp
dtype: string
- name: section
dtype: string
- name: original_question
dtype: string
- name: original_answer
dtype: string
- name: original_additional_info
dtype: string
- name: number
dtype: string
splits:
- name: aio_01_test
num_bytes: 900806
num_examples: 2000
- name: aio_01_dev
num_bytes: 868722
num_examples: 1992
- name: aio_01_unused
num_bytes: 267601
num_examples: 608
download_size: 1090027
dataset_size: 2037129
configs:
- config_name: default
data_files:
- split: aio_01_test
path: v2/aio_01_test-*
- split: aio_01_dev
path: v2/aio_01_dev-*
- split: aio_01_unused
path: v2/aio_01_unused-*
task_categories:
- question-answering
language:
- ja
---
# JAQKET から CC-BY-SA のデータのみを含めたデータセット
[AI王 公式配布データセット(JAQKET) ](https://sites.google.com/view/project-aio/dataset?authuser=0)で配布されているクイズデータのうち、ライセンスが [CC-BY-SA-4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.ja)のデータのみを含めたデータセットです。
## 謝辞
AI王の開催・クイズ作成等々をされた関係者の方々に、有益なデータセットの公開ありがとうございます。
## 利用方法
```
from datasets import load_dataset
ds = load_dataset("hotchpotch/jaqket_cc")
ds["aio_01_dev"][0]
#=> {'qid': 'QA20CAPR-0002',
'question': '明治時代に西洋から伝わった「テーブル・ターニング」に起源を持つ占いの一種で、50音表などを記入した紙を置き、参加者全員の人差し指をコインに置いて行うのは何でしょう?',
'answers': ['コックリさん'],
'competition': '第1回AI王',
'timestamp': '2019/12/25',
'section': '開発データ問題 (dev1)',
'original_question': '明治時代に西洋から伝わった「テーブル・ターニング」に起源を持つ占いの一種で、50音表などを記入した紙を置き、参加者全員の人差し指をコインに置いて行うのは何でしょう?',
'original_answer': 'コックリさん',
'original_additional_info': '',
'number': '2'}
```