CoolFace
Datasetpublic

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.

sourceHugging Facecc-by-4.0updated 3mo agoView on Hugging Face
2likes22downloads
Dataset Card

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`DescriptionKOENTotal
docGuide documents218215433
apiAPI Reference5715711142
resResources10250152
All8918361727

Configs

The dataset is split into per-language configs. Each config has a single train split and contains all three document types.

configDescriptionRows
koKorean documents891
enEnglish documents836
Total1727
python
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

ColumnTypeDescription
idint64Unique document ID (Creator Center postId)
typestringDocument type — api (API Reference) / doc (guide document) / res (resource)
languagestringLanguage — KO / EN
titlestringDocument title
contentstringBody in Markdown. Code blocks are normalized to mlua
urlstringSource URL (https://maplestoryworlds-creators.nexon.com/{lang}/{section}?postId={id})

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.