File size: 2,425 Bytes
7eca39a
 
dec4cb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b4308c4
 
 
 
7eca39a
b4308c4
 
 
 
 
 
 
 
 
ca56070
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b4308c4
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
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'}

```