Upload 4 files
Browse files- README.md +126 -0
- data.jsonl +0 -0
- gitattributes +58 -0
- metadata.jsonl +0 -0
README.md
ADDED
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- question-answering
|
5 |
+
language:
|
6 |
+
- ja
|
7 |
+
tags:
|
8 |
+
- pharmacy
|
9 |
+
- chemistry
|
10 |
+
- biology
|
11 |
+
- medical
|
12 |
+
pretty_name: YakugakuQA
|
13 |
+
size_categories:
|
14 |
+
- 1K<n<10K
|
15 |
+
---
|
16 |
+
|
17 |
+
# YakugakuQA
|
18 |
+
|
19 |
+
<!-- Provide a quick summary of the dataset. -->
|
20 |
+
|
21 |
+
YakugakuQA is a question answering dataset, consisting of 13 years (2012-2024) of past questions and answers from the Japanese National License Examination for Pharmacists. It contains over 4K pairs of questions, answers, and commentaries.
|
22 |
+
|
23 |
+
**2025-2-17: Image data added.**
|
24 |
+
|
25 |
+
**2024-12-10: Dataset release.**
|
26 |
+
|
27 |
+
## Dataset Details
|
28 |
+
|
29 |
+
### Dataset Description
|
30 |
+
|
31 |
+
<!-- Provide a longer summary of what this dataset is. -->
|
32 |
+
|
33 |
+
- **Curated by:** EQUES Inc.
|
34 |
+
- **Funded by [optional]:** [GENIAC Project](https://www.meti.go.jp/policy/mono_info_service/geniac/index.html)
|
35 |
+
- **Shared by [optional]:**
|
36 |
+
- **Language(s) (NLP):** Japanese
|
37 |
+
- **License:** cc-by-4.0
|
38 |
+
|
39 |
+
## Uses
|
40 |
+
|
41 |
+
<!-- Address questions around how the dataset is intended to be used. -->
|
42 |
+
|
43 |
+
### Direct Use
|
44 |
+
|
45 |
+
<!-- This section describes suitable use cases for the dataset. -->
|
46 |
+
|
47 |
+
YakugakuQA is intended to be used as a benchmark for evaluating the knowledge of large language models (LLMs) in the field of pharmacy.
|
48 |
+
|
49 |
+
### Out-of-Scope Use
|
50 |
+
|
51 |
+
<!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
|
52 |
+
|
53 |
+
Any usage except above.
|
54 |
+
|
55 |
+
## Dataset Structure
|
56 |
+
|
57 |
+
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
|
58 |
+
|
59 |
+
YakugakuQA consists of two files: `data.jsonl`, which contains the questions, answers, and commentaries, and `metadata.jsonl`, which holds supplementary information about the question categories and additional details related to the answers.
|
60 |
+
|
61 |
+
### data.jsonl
|
62 |
+
|
63 |
+
- "problem_id" : unique ID, represented by a six-digit integer. The higher three digits indicate the exam number, while the lower three digits represent the question number within that specific exam.
|
64 |
+
- "problem_text" : problem statement.
|
65 |
+
- "choices" : choices corresponding to each question. Note that the Japanese National License Examination for Pharmacists is a multiple-choice format examination.
|
66 |
+
- "text_only" : whether the question includes images or tables. The corresponding images or tables are not included in this dataset, even if `text_only` is marked as `false`.
|
67 |
+
- "answer" : list of indices of the correct choices. Note the following points:
|
68 |
+
- the choices are 1-indexed.
|
69 |
+
- multiple choices may be included, depending on the question format.
|
70 |
+
- "解なし" indicates there is no correct choice. The reason for this is documented in `metadata.jsonl` in most cases.
|
71 |
+
- "comment" : commentary text.
|
72 |
+
- "num_images" : number of images included in the question.
|
73 |
+
|
74 |
+
### metadata.jsonl
|
75 |
+
|
76 |
+
- "problem_id" : see above.
|
77 |
+
- "category" : question caterogy. One of the `["Physics", "Chemistry", "Biology", "Hygiene", "Pharmacology", "Pharmacy", "Pathology", "Law", "Practice"]`.
|
78 |
+
- "note" : additional information about the question.
|
79 |
+
|
80 |
+
|
81 |
+
### images
|
82 |
+
|
83 |
+
The image filenames follow the format:
|
84 |
+
`problem_id_{image_id}.png`
|
85 |
+
|
86 |
+
|
87 |
+
## Dataset Creation
|
88 |
+
|
89 |
+
### Curation Rationale
|
90 |
+
|
91 |
+
<!-- Motivation for the creation of this dataset. -->
|
92 |
+
|
93 |
+
YakugakuQA aims to provide a Japanese-language evaluation benchmark for assessing the domain knowledge of LLMs.
|
94 |
+
|
95 |
+
### Source Data
|
96 |
+
|
97 |
+
<!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
|
98 |
+
|
99 |
+
#### Data Collection and Processing
|
100 |
+
|
101 |
+
<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
|
102 |
+
|
103 |
+
All questions, answers and commentaries for the target years have been collected. The parsing process has been performed automatically.
|
104 |
+
|
105 |
+
#### Who are the source data producers?
|
106 |
+
|
107 |
+
<!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
|
108 |
+
|
109 |
+
All question, answers, and commentaries have been obtained from [yakugaku lab](https://yakugakulab.info/). All metadata has been obtained from the website of the Ministry of Health, Labour and Welfare. It should be noted that the original questions and answers are also sourced from materials published by the Ministry of Health, Labour and Welfare.
|
110 |
+
|
111 |
+
## Citation
|
112 |
+
|
113 |
+
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
|
114 |
+
|
115 |
+
**BibTeX:**
|
116 |
+
```
|
117 |
+
Coming soon...
|
118 |
+
```
|
119 |
+
|
120 |
+
## Contributions
|
121 |
+
|
122 |
+
Thanks to [@shinnosukeono](https://github.com/shinnosukeono) for adding this dataset.
|
123 |
+
|
124 |
+
## Acknowledgement
|
125 |
+
|
126 |
+
本データセットは、経済産業省及び国立研究開発法人新エネルギー・産業技術総合開発機構(NEDO)による生成AI開発力強化プロジェクト「GENIAC」により支援を受けた成果の一部である。
|
data.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
gitattributes
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
19 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
20 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
25 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
26 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
27 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
29 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
30 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
31 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
32 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
33 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
36 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
37 |
+
# Audio files - uncompressed
|
38 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
39 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
40 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
41 |
+
# Audio files - compressed
|
42 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
43 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
44 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
45 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
46 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
47 |
+
# Image files - uncompressed
|
48 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
49 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
50 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
51 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
52 |
+
# Image files - compressed
|
53 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
54 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
55 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
56 |
+
# Video files - compressed
|
57 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
58 |
+
*.webm filter=lfs diff=lfs merge=lfs -text
|
metadata.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|