Datasets:
File size: 3,326 Bytes
33e9cf0 ebb8c42 160cf39 33e9cf0 ebb8c42 160cf39 33e9cf0 b93025e 868f7bc ebb8c42 160cf39 73442bc 81b650f 160cf39 b93025e 160cf39 b93025e cab7ed2 b93025e cab7ed2 b93025e 160cf39 b93025e dc1faf8 e538004 dc1faf8 cab7ed2 dc1faf8 cab7ed2 a13339b dc1faf8 e195940 dc1faf8 cab7ed2 e195940 a13339b 2eb6386 a13339b 2eb6386 a13339b cab7ed2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
---
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')"
}
}
|