HAERAE-HUB/Ko-PIQA
Ko-PIQA: Korean Physical Commonsense Reasoning Dataset π Dataset Overview Ko-PIQA is a Korean Physical Commonsense Reasoning dataset designed to complement English-centric benchmarks like PIQA and to include culturally-grounded physical reasoning questions. Total items: 441 Culturally-grounded items: 87 (19.7%)(e.g., kimchi storage, hanbok care, ondol heating) Format: PIQA-style binary choice (solution0 / solution1) Goal: Evaluate Korean LLM physicalβ¦ See the full description on the dataset page: https://huggingface.co/datasets/HAERAE-HUB/Ko-PIQA.
Ko-PIQA: Korean Physical Commonsense Reasoning Dataset

π Dataset Overview
Ko-PIQA is a Korean Physical Commonsense Reasoning dataset designed to complement English-centric benchmarks like PIQA and to include culturally-grounded physical reasoning questions.
- Total items: 441
- Culturally-grounded items: 87 (19.7%) (e.g., kimchi storage, hanbok care, ondol heating)
- Format: PIQA-style binary choice (
solution0/solution1) - Goal: Evaluate Korean LLM physical reasoning capabilities
π Data Fields
π Source & Filtering Pipeline
- Source: 3.01M Korean Q&A pairs from Naver Knowledge iN (collected until May 2025)
- Step 1: Filtered PIQA-style questions using Qwen3-4B, Qwen3-32B, and HCX-14B β 11,553 candidates
- Step 2: Sampled 600 general and 158 cultural questions
- Step 3: Refined and generated distractors using GPT-4o
- Step 4: Two native Korean speakers validated and filtered questions β 471 items
- Step 5: Deduplicated using KoSentenceBERT (cosine similarity > 0.85) β final 441 items
π‘ Example
{
"prompt": "κΉμΉμ°κ°λ₯Ό λμΌ λ 묡μμ§μ μ λ§μ μ€νμν€λ©΄μλ κΉμ λ§μ λ΄λ €λ©΄?",
"solution0": "μ€νμ ν μ€νΌ λ£κ³ λ¬Όμ λΆμ ν μ€λΆμμ 5λΆκ° λμΈλ€.",
"solution1": "μ€νμ ν μ€νΌ λ£κ³ μ€λΆμμ 5λΆκ° λ¨Όμ λ³Άμ ν λ¬Όμ λΆλλ€.",
"label": 1,
"cultural": 1
}π» Usage
from datasets import load_dataset
ds = load_dataset("HAERAE-HUB/Ko-PIQA")
print(ds['train'][0])π Citation
@misc{choi2025kopiqa,
title={Ko-PIQA: A Korean Physical Commonsense Reasoning Dataset with Cultural Context},
author={Dasol Choi and Jungwhan Kim and Guijin Son},
year={2025},
eprint={2509.11303},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2509.11303},
}