msw-ai-tf/maplestory-worlds-creator-qa
MapleStory Worlds Creator QA Synthetic question-answer dataset built from the official MapleStory Worlds Creator Center documentation. Questions are generated to be self-contained and grounded in the source docs; answers avoid source/meta references so they read like an expert explanation. Some QA pairs are composed from multiple related documents (see combo_sources). Parallel Korean/English. Intended for instruction tuning, QA, and retrieval. Composition… See the full description on the dataset page: https://huggingface.co/datasets/msw-ai-tf/maplestory-worlds-creator-qa.
MapleStory Worlds Creator QA
Synthetic question-answer dataset built from the official MapleStory Worlds Creator Center documentation. Questions are generated to be self-contained and grounded in the source docs; answers avoid source/meta references so they read like an expert explanation. Some QA pairs are composed from multiple related documents (see combo_sources).
Parallel Korean/English. Intended for instruction tuning, QA, and retrieval.
Composition
Multi-document (composite) QA: 69256. Question types: {'how_to': 32407, 'property': 21504, 'constraint': 12865, 'comparison': 11961, 'definition': 11868, 'usage': 9497}.
Usage
from datasets import load_dataset
# Korean only
ds_ko = load_dataset("msw-ai-tf/maplestory-worlds-creator-qa", "ko", split="train")
# English only
ds_en = load_dataset("msw-ai-tf/maplestory-worlds-creator-qa", "en", split="train")
# Combine both
from datasets import concatenate_datasets
ds_all = concatenate_datasets([ds_ko, ds_en])Features
Generation
Documents → embedding-based related-doc combination → question synthesis (diverse types, platform aliases, paraphrases, typos) → embedding-based near-duplicate removal (Qdrant) → grounded self-contained answers.
Source & License
- Source: MapleStory Worlds Creator Center (© NEXON Korea)
- License: CC BY 4.0
