--- dataset_info: features: - name: image dtype: image - name: file_name dtype: string - name: type dtype: string - name: project_id dtype: string - name: mod_slug dtype: string - name: author dtype: string - name: license dtype: string - name: project_type dtype: string - name: version_url dtype: string splits: - name: train num_bytes: 654412836.875 num_examples: 1034057 download_size: 383416120 dataset_size: 654412836.875 configs: - config_name: default data_files: - split: train path: data/train-* tags: - minecraft - pixel - pixelart --- This dataset contains a collection of **16x16 RGBA Minecraft assets** (blocks and item textures). The assets are standardized in format (RGBA) and resolution (16x16) 13,072 Total Mods 552,234 Total Items 481,701 Total Blocks --- ## 📦 Contents - ✅ **Resolution**: 16x16 pixels - ✅ **Format**: PNG (RGBA) - ✅ **Types**: - Block textures - Item textures - ✅ **Color Space**: RGBA (with alpha channel) --- | Field | Type | Description | | :--- | :--- | :--- | | `image` | `Image` | The 16x16 RGBA texture, loaded as a PIL Image object. | | `file_name` | `string` | The original filename of the texture (e.g., `stone.png`). | | `type` | `string` | The type of asset, either `block` or `item`. | | `project_id`| `string` | The unique identifier for the project (mod) on its source platform (e.g., CurseForge/Modrinth ID). | | `mod_slug` | `string` | A URL-friendly identifier for the source mod (e.g., `journeymap`). | | `author` | `string` | The username of the mod's author. | | `license` | `string` | The license under which the mod was published (e.g., `MIT`, `GPL-3.0`, `All Rights Reserved`). | | `project_type`| `string` | The type of project, typically `mod`. | | `version_url`| `string` | A direct URL to the specific mod |