|
--- |
|
language: |
|
- en |
|
- ko |
|
license: cc0-1.0 |
|
license_name: cc0-1.0 |
|
license_link: https://creativecommons.org/publicdomain/zero/1.0/ |
|
tags: |
|
- code |
|
- gaming |
|
- nlp |
|
annotations_creators: |
|
- machine-generated |
|
language_creators: |
|
- machine-generated |
|
pretty_name: Minecraft Command Dataset |
|
size_categories: |
|
- 100K<n<1M |
|
task_categories: |
|
- question-answering |
|
task_ids: |
|
- extractive-qa |
|
configs: |
|
- config_name: minecraft_command_dataset_160K |
|
data_files: minecraft_command_dataset.jsonl |
|
dataset_info: |
|
features: |
|
- name: input |
|
dtype: string |
|
- name: output |
|
dtype: string |
|
- name: metadata |
|
dtype: dict |
|
config_name: minecraft_command_dataset |
|
splits: |
|
- name: train |
|
num_bytes: null |
|
num_examples: 50000 |
|
- name: val |
|
num_bytes: null |
|
num_examples: 5000 |
|
- name: test |
|
num_bytes: null |
|
num_examples: null |
|
train-eval-index: |
|
- config: minecraft_command_dataset |
|
task: question-answering |
|
task_id: extractive-qa |
|
splits: |
|
train_split: train |
|
eval_split: val |
|
col_mapping: |
|
question: input |
|
answers: |
|
text: output |
|
--- |
|
# Dataset Card for 'Minecraft Command Dataset' |
|
|
|
## Dataset Details |
|
|
|
### Dataset Description |
|
|
|
The Minecraft Command Dataset is a JSONL dataset designed for training AI models to understand Minecraft Data Pack commands. |
|
It contains various command types (`scoreboard`, `execute`, `function`, `give`, `effect`, `tp`, `setblock`) with real and virtual users, items, effects, and blocks. |
|
Each entry provides: |
|
|
|
- **Input**: A natural language prompt including the command. |
|
- **Output**: A non-overlapping natural language description of the command. |
|
- **Metadata**: Additional structured information for AI understanding, including command type, difficulty, components, alternative descriptions, player type, coordinates type, dataset split, version, and timestamp. |
|
|
|
This dataset is automatically generated based on randomized Minecraft commands, ensuring rich variation and coverage of gameplay mechanics. |
|
|
|
- **Curated by:** Individual project |
|
- **Shared via:** HuggingFace Hub |
|
- **Language(s):** English, Korean |
|
- **License:** CC0 1.0 Universal |
|
|
|
### Dataset Structure |
|
|
|
- **Format:** JSONL (one JSON object per line) |
|
- **Fields:** |
|
|
|
```json |
|
{ |
|
"input": "Prompt with command or description", |
|
"output": "Minecraft Commands or Command Descriptions", |
|
"task_type": "nl_to_code/code_to_nl", |
|
"metadata": { |
|
"index": "number", |
|
"command_type": "Minecraft command type, e.g., 'tp', 'scoreboard', 'execute', 'give', 'effect', 'function', 'setblock'", |
|
"difficulty_code": "integer (1-5, code-based difficulty of command)", |
|
"difficulty_nl": "integer (1-5, natural-language description difficulty)", |
|
"components": "list of strings (command components, e.g., ['tp', 'COLISON', '94', '67', '15'])", |
|
"alternative_descriptions": "list of strings (other natural language descriptions, e.g., ['Teleport COLISON to coordinates (94 67 15)', 'Moves the player COLISON instantly to the specified location'])", |
|
"player_or_virtual_user": "string (Real player, e.g., '@p', 'Steve', or virtual user, e.g., '#Calc')", |
|
"coordinates_type": "string ('absolute' or 'relative', based on ~ usage)", |
|
"split": "string ('train', 'val', 'test')", |
|
"version": "160k", |
|
"timestamp": "string (ISO 8601 format, e.g., '2025-09-14T21:26:17.238102')" |
|
} |
|
} |
|
|