datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
oai_minecraft_npyMinecraft-Skins-20M
Dataset Card for Minecraft Skins
Dataset Summary
This dataset contains 19,973,928 unique Minecraft player skins collected from various sources. Each skin is stored as a base64-encoded image with a unique identifier.
Dataset Structure
Data Fields
This dataset includes the following fields:
id: A randomly generated UUID for each skin entry. These UUIDs are not linked to any external APIs or services (such as Mojang's player UUIDs) and serve solely as… See the full description on the dataset page: https://huggingface.co/datasets/nyuuzyou/Minecraft-Skins-20M.Minecraft-Skins-Captioned-1M
Dataset Card for Minecraft Skins
Dataset Summary
This dataset contains 981,079 unique Minecraft player skins collected from various sources. Each skin is stored as a base64-encoded image with a unique identifier.
Dataset Structure
Data Fields
This dataset includes the following fields:
hash: A data dependent hash. These hashes are generated from raw bytes and will be same if the skin is identical.
image: The skin image encoded in base64 format.… See the full description on the dataset page: https://huggingface.co/datasets/neurlang/Minecraft-Skins-Captioned-1M.Minecraft-GLB2Schem-RepairPairs-v1
unfundedResearcher/Minecraft-GLB2Schem-RepairPairs-v1
Paired (generated input, ground-truth target) Minecraft schematics for training a
model that turns an approximate voxelisation into a real build.
What a sample is
Each sample is three files inside a WebDataset TAR shard:
File
Meaning
<id>.input.schem
GENERATED. Produced by voxelising the source .glb. Approximate and noisy.
<id>.target.schem
GROUND TRUTH. The original schematic, copied byte-for-byte… See the full description on the dataset page: https://huggingface.co/datasets/unfundedResearcher/Minecraft-GLB2Schem-RepairPairs-v1.beat-the-game-minecraft
Mine AI MCP — the run that beat Minecraft
An LLM agent played Minecraft 1.21.4 from an empty world to a defeated Ender Dragon,
autonomously, in a single unbroken session. No human input after the prompt, no
scripted behaviour trees, no save-scumming. This dataset is the complete record of
that run.
📺 Watch the run: https://www.youtube.com/watch?v=ZjtwWEfFVFY
💻 Code: https://github.com/aibengineering/mine-ai-mcp (MIT)
What it cost
Beating Minecraft took $93.17 of… See the full description on the dataset page: https://huggingface.co/datasets/aibengineering/beat-the-game-minecraft.minecraft-question-answer-700k
minecraft-question-answer-700k
Introducing the largest synthetic Minecraft Q&A dataset, covering every topic, game mechanic, item and craft in Minecraft. The dataset was generated by extracting over 18,000 Minecraft wiki pages, and using glaive.ai's synthetic data generation pipeline.
about the dataset
rows - 694,814
tokens - 47,133,624
source - https://minecraft.wiki/
Hit me up on twitter if you see a bug or need a synthetic dataset for your company:… See the full description on the dataset page: https://huggingface.co/datasets/naklecha/minecraft-question-answer-700k.Minecraft-Fable-ImageGLB-v1MinecraftMinecraft-Server-Chat
Minecraft Server Chat
Important Info: This dataset contains swears. I filtered out as much racism as possible. People who were racist were banned from the server. I am not affiliated with the server in any way.
A collection of 2,000,000 messages said across two years in a minecraft server. The minecraft semi-anarchy server logged all of its messages to discord between 2020 and 2023. I downloaded all of them and made them into a json in chronological order. I also cleaned the… See the full description on the dataset page: https://huggingface.co/datasets/declip/Minecraft-Server-Chat.MinecraftSkillDiscoveryThis is the segmented datasets of the project presented in the paper Open-World Skill Discovery from Unsegmented Demonstrations.
Code: https://github.com/CraftJarvis/SkillDiscovery
Project Page: https://craftjarvis.github.io/SkillDiscovery
Each line of the jsonl file consists of the video file name and the boundaries [begin1, end1], [begin2, end2], ...
Events information is also included in the "with info" file.
The video files can be downloaded here. Notice that we use the 7.x version.
BlockData-minecraft-10k
Dataset Card for Dataset Name
Minecraft dataset features user-AI interactions, providing gameplay advice and strategies.
Dataset Details
Dataset Description
The Minecraft dataset on Hugging Face consists of 6,390 rows of interactions between users and an AI assistant designed to provide expert advice on Minecraft. It includes questions about gameplay strategies, such as efficient storage options, diamond farming tips, and mining improvements. The assistant… See the full description on the dataset page: https://huggingface.co/datasets/FalconNet/BlockData-minecraft-10k.minecraft-skins-1.1m-deduped-64x64-2.0
Minecraft Skins 1.1M Deduped (64x64 Edition) 2.0!
Minecraft Skins 1.1M Deduped 1.5 but it's tagged.
Format is just a 76.5 MB JSONL file and a 6.1 MB zipped JSONL file (as a JSONZ file)
Tools used
PIL Image (Python) and Google Colab (T4 GPU tier, but it didn't use the GPU at all!)
How it was made
Loaded Minecraft Skins 1.1M Deduped 1.5,
Tagged using a simple system where it looks for colors and complexity,
Output is given in a 6.1 MB ZIP archive or a 76.5 MB… See the full description on the dataset page: https://huggingface.co/datasets/MihaiPopa-1/minecraft-skins-1.1m-deduped-64x64-2.0.Minecraft-1.20.1-forge-modding
Forge-SLM Dataset v2
Minecraft Forge 1.20.1 Mod Development Training Dataset for Qwen3.5-4B (DeltaNet Hybrid)
Notes on Metrics
Forge API Specificity is weighted down by bug_fix records (2.7/10) which are code fragments without full class context. New records score 4.0-6.0/10.
Code Compliance for new records: 9.7/10, 100% pass rate
Think-Code Coherence improved from 4.9 → 8.7 for new records through programmatic + LLM regeneration
The 22% "zero API records" in the… See the full description on the dataset page: https://huggingface.co/datasets/Losa10/Minecraft-1.20.1-forge-modding.minecraft-wikiThis dataset was made by scrapping the entire minecraft wiki using this
repo.
THIS WAS GENERATED BY SCRAPING THE WIKI AND PASSING THE CONTENT THROUGH AN LLM TO GENERATE THE QUESTION ANSWER PAIRS
minecraft-alpacadatasetOrignal dataset:naklecha/minecraft-question-answer-700k
just changed the format and uh removed a lot of invalid columns..
FunPay-Minecraft-Lots-Mini-6k
FalconNet/FunPay-Minecraft-Lots-Mini-6k
Prices are in Rubles
Script used to create this:
from __future__ import annotations
import argparse
import asyncio
import csv
import json
import re
from dataclasses import dataclass, asdict
from pathlib import Path
from typing import List, Optional
from bs4 import BeautifulSoup
from playwright.async_api import async_playwright, TimeoutError as PlaywrightTimeout
@dataclass
class Lot:
"""Represents a single offer on… See the full description on the dataset page: https://huggingface.co/datasets/FalconNet/FunPay-Minecraft-Lots-Mini-6k.minecraft-skins-1.1m-taggedFrom MihaiPopa-1/minecraft-skins-1.1m-deduped-64x64-1.5, captions generated with zhoudoe23/mc-tagger-qwen3_vl_2b-merged (that's the maximum amount of caps I can generate with my resources :( ).
Minecraft-Wiki-2023Minecraft_Latentminecraft-nl2command-ja-en
Minecraft NL→Command Dataset (Japanese / English)
自然言語の指示(日本語・英語)を Minecraft Java Edition 1.21.5 のコマンドに変換するためのデータセットです。
A dataset of natural-language instructions (Japanese / English) paired with Minecraft Java Edition 1.21.5 commands.
{"instruction": "自分の持っているアイテムにウィンドバーストIを付与して",
"output": "/enchant @s minecraft:wind_burst 1",
"lang": "ja", "command": "enchant", "mc_version": "1.21.5"}
Contents
~51k pairs (train ≈ 48.5k / test ≈ 2.5k), roughly half Japanese… See the full description on the dataset page: https://huggingface.co/datasets/Naxii/minecraft-nl2command-ja-en.minecraft_qa_es
Minecraft Q&A (Spanish)
A Spanish, chat-formatted question/answer dataset about Minecraft. Each example is a short conversation with a single user question and a single assistant answer (plus a system prompt).
Data format
The dataset is provided as JSON Lines (.jsonl): one JSON object per line.
Each record has a single key:
messages: an array of chat messages, each with:
role: one of "system", "user", "assistant"
content: the message text
Typical structure:… See the full description on the dataset page: https://huggingface.co/datasets/CelesteLove/minecraft_qa_es.Minecraftbuilding2MinecraftStructuredDialogueCorpus
Minecraft Structured Dialogue Corpus
The Minecraft Structured Dialogue Corpus (MSDC) is a discourse-annotated version of the Minecraft Dialogue Corpus (MDC), first created by Julia Hockenmaier's lab in 2019.
The MSDC features complete, situated discourse structures for each dialogue in the style of Situated Discourse Representation Theory (Asher and Lascarides, 2003).
Dataset Description
The MSDC is a collection of natural language dialogues between pairs of human participants who… See the full description on the dataset page: https://huggingface.co/datasets/linagora/MinecraftStructuredDialogueCorpus.minecraft-10ksmall minecraft alpaca style dataset created for fun
minecraftbedwarsI do not own any of the videos used in the making of this dataset.
I made this for fun :D, how'd I do 😏?
minecraft-commandsminecraft-facts-jsonl-ru-enminecraft-block-statesMinecraft block states dataset for versions 1.13 to 1.21.
Creating data files
python block_states_data.py
Source
sebario/minecraft-blocks Minecraft blocks dataset for versions 1.13 to 1.21.
Upload
huggingface-cli upload sebario/minecraft-block-states . --repo-type=dataset
minecraft-question-answer-190knaklecha_minecraft-question-answer-700k-ShareGPT
