msw-ai-tf/maplestory-worlds-creator-docs
MapleStory Worlds Creator Center Documentation A curated dataset built from the official documentation of the MapleStory Worlds Creator Center. It is a parallel Korean/English documentation corpus intended for RAG, search, embeddings, and domain language-model training. The dataset covers all three Creator Center content types — guide documents (doc), API Reference (api), and resources (res). Composition Document counts by type and language: type Description… See the full description on the dataset page: https://huggingface.co/datasets/msw-ai-tf/maplestory-worlds-creator-docs.
MapleStory Worlds Creator Center Documentation
A curated dataset built from the official documentation of the MapleStory Worlds Creator Center. It is a parallel Korean/English documentation corpus intended for RAG, search, embeddings, and domain language-model training.
The dataset covers all three Creator Center content types — guide documents (doc), API Reference (api), and resources (res).
Composition
Document counts by type and language:
Configs
The dataset is split into per-language configs. Each config has a single train split and contains all three document types.
from datasets import load_dataset
# Korean only
ds_ko = load_dataset("msw-ai-tf/maplestory-worlds-creator-docs", "ko", split="train")
# English only
ds_en = load_dataset("msw-ai-tf/maplestory-worlds-creator-docs", "en", split="train")
# Combine both
from datasets import concatenate_datasets
ds_all = concatenate_datasets([ds_ko, ds_en])Features
Source & License
- Source: MapleStory Worlds Creator Center (© NEXON Korea)
- License: CC BY 4.0 — free to share and adapt, including commercially, with attribution to the source.
Curation Process
Generated through the following pipeline: raw back-office JSON -> code-block extraction / mlua conversion -> language ordering & stop-item removal -> HTML/table normalization -> tokenization checks -> per-language Parquet export.
