|
--- |
|
language: |
|
- ko |
|
--- |
|
|
|
# ko-ged-2501-high |
|
|
|
ko-ged-2501-high is a benchmark dataset designed to evaluate the comprehension and reasoning capabilities of large language models (LLMs) in the Korean language. The dataset comprises **multiple-choice** questions extracted from the General Equivalency Diploma (GED) exams. Specifically, this dataset contains questions from the first GED exam of 2025. All exam items are sourced from the official archives managed by the [Korean Ministry of Education](https://www.gumsi.or.kr/). |
|
|
|
## Subject Distribution |
|
|
|
| Subject | Count | |
|
|:----------------------------|------:| |
|
| English | 25 | |
|
| Ethics | 25 | |
|
| Korean History | 25 | |
|
| Korean | 24 | |
|
| Social Studies | 24 | |
|
| Technology & Home Economics | 24 | |
|
| Art | 23 | |
|
| Physical Education | 23 | |
|
| Science | 23 | |
|
| Math | 20 | |
|
| Music | 13 | |
|
|
|
## Structure |
|
|
|
- `id`: a unique positive integer identifier for each question |
|
- `Domain`: subject name |
|
- `Question`: the question prompt |
|
- `Correct Answer`: the correct answer |
|
- `Incorrect Answer 1`, `Incorrect Answer 2`, `Incorrect Answer 3`: three incorrect choices |
|
|
|
```json |
|
[ |
|
{ |
|
"id": 1, |
|
"Domain": "์ฌํ", |
|
"Question": "๋ค์์์ ์ค๋ช
ํ๋ ์ธ๊ฐ, ์ฌํ, ํ๊ฒฝ์ ๋ฐ๋ผ๋ณด๋ ๊ด์ ์ผ๋ก ๊ฐ์ฅ ์ ์ ํ ๊ฒ์?\nโฆ ์๋์ ๋ฐฐ๊ฒฝ๊ณผ ๋งฅ๋ฝ์ ํ ๋๋ก ์ดํด๋ณด๋ ๊ฒ\nโฆ ๊ณผ๊ฑฐ, ํ์ฌ, ๋ฏธ๋์ ์ํธ ์ฐ๊ด์ฑ์ ๋ฐํ์ผ๋ก ์ดํด๋ณด๋ ๊ฒ", |
|
"Correct Answer": "์๊ฐ์ ๊ด์ ", |
|
"Incorrect Answer 1": "๊ณต๊ฐ์ ๊ด์ ", |
|
"Incorrect Answer 2": "์ํ์ ๊ด์ ", |
|
"Incorrect Answer 3": "์ค๋ฆฌ์ ๊ด์ " |
|
} |
|
] |
|
``` |
|
|