Processed, version controlled history of Minecraft's generated data and assets

Related tags

Deep Learning mcmeta
Overview

mcmeta

Processed, version controlled history of Minecraft's generated data and assets

Repository structure

Each of the following branches has a commit per version. Starting from 1.14, updated to the latest snapshot. Each commit is tagged <version>-<branch>.

  • summary - Branch with condensed reports from the data generator or assets, in a variety of formats.
    • blocks - Containing block state properties and defaults for all necessary blocks.
    • commands - The brigadier command tree.
    • registries - Collections of resource locations. Including the generated registries, data, and assets.
    • sounds - The sounds.json from assets.
    • versions - A list of versions up to that point ordered with the most recent first. Each entry has the same format as the version.json at the root of each branch.
  • data - The vanilla data as it if would appear in a data pack.
  • data-json - The same as data but only containing json files, so excluding structures.
  • assets - The vanilla assets is if they would appear in a resource pack.
  • assets-json - The same as assets but only containing json files, so excluding textures, sounds and shaders.

Sources

  • Version manifest, a list of versions and metadata, client and server jars by following links
  • Sound files from Mojang's API following the version manifest
  • Data generator using the following command:
    java -cp server.jar net.minecraft.data.Main --server --reports
  • Slicedlime's examples repo for worldgen changes before 1.18-pre1

Credits

This project has taken inspiration from Arcensoth/mcdata and SPGoding/vanilla-datapack.

Disclaimer

mcmeta is not an official Minecraft product, and is not endorsed by or associated with Mojang Studios. All data and assets were obtained through Mojang's internal data generator and public API. If Mojang ever has something against this data existing here, the repository will be promptly removed.

You might also like...
CausalNLP is a practical toolkit for causal inference with text as treatment, outcome, or "controlled-for" variable.

CausalNLP CausalNLP is a practical toolkit for causal inference with text as treatment, outcome, or "controlled-for" variable. Install pip install -U

iPOKE: Poking a Still Image for Controlled Stochastic Video Synthesis
iPOKE: Poking a Still Image for Controlled Stochastic Video Synthesis

iPOKE: Poking a Still Image for Controlled Stochastic Video Synthesis iPOKE: Poking a Still Image for Controlled Stochastic Video Synthesis Andreas Bl

Implementation of CVPR 2021 paper
Implementation of CVPR 2021 paper "Spatially-invariant Style-codes Controlled Makeup Transfer"

SCGAN Implementation of CVPR 2021 paper "Spatially-invariant Style-codes Controlled Makeup Transfer" Prepare The pre-trained model is avaiable at http

GuideDog is an AI/ML-based mobile app designed to assist the lives of the visually impaired, 100% voice-controlled
GuideDog is an AI/ML-based mobile app designed to assist the lives of the visually impaired, 100% voice-controlled

Guidedog Authors: Kyuhee Jo, Steven Gunarso, Jacky Wang, Raghav Sharma GuideDog is an AI/ML-based mobile app designed to assist the lives of the visua

PyTorch implementation of SCAFFOLD (Stochastic Controlled Averaging for Federated Learning, ICML 2020).

Scaffold-Federated-Learning PyTorch implementation of SCAFFOLD (Stochastic Controlled Averaging for Federated Learning, ICML 2020). Environment numpy=

Episodic Transformer (E.T.) is a novel attention-based architecture for vision-and-language navigation. E.T. is based on a multimodal transformer that encodes language inputs and the full episode history of visual observations and actions. Fusion-DHL: WiFi, IMU, and Floorplan Fusion for Dense History of Locations in Indoor Environments
Fusion-DHL: WiFi, IMU, and Floorplan Fusion for Dense History of Locations in Indoor Environments

Fusion-DHL: WiFi, IMU, and Floorplan Fusion for Dense History of Locations in Indoor Environments Paper: arXiv (ICRA 2021) Video : https://youtu.be/CC

Official code for Next Check-ins Prediction via History and Friendship on Location-Based Social Networks (MDM 2018)
Official code for Next Check-ins Prediction via History and Friendship on Location-Based Social Networks (MDM 2018)

MUC Next Check-ins Prediction via History and Friendship on Location-Based Social Networks (MDM 2018) Performance Details for Accuracy: | Dataset

This is a model to classify Vietnamese sign language using Motion history image (MHI) algorithm and CNN.
This is a model to classify Vietnamese sign language using Motion history image (MHI) algorithm and CNN.

Vietnamese sign lagnuage recognition using MHI and CNN This is a model to classify Vietnamese sign language using Motion history image (MHI) algorithm

Comments
  • Summary: 1.14.1 and 1.14 aren't marked as stable

    Summary: 1.14.1 and 1.14 aren't marked as stable

    Affected file: Version data JSON file in the summary branch

    Relevent lines: 2499 and 2541

      {
        "id": "1.14",
        "name": "1.14",
        "release_target": "1.14",
        "type": "release",
        "stable": false, // HERE
        "data_version": 1952,
        "protocol_version": 477,
        "data_pack_version": 4,
        "resource_pack_version": 4,
        "build_time": "2019-04-23T14:51:09+00:00",
        "release_time": "2019-04-23T14:52:44+00:00",
        "sha1": "44552c5e051cff06483616adb1f6fd2d94ee3447"
      },
      ...
      {
        "id": "1.14.1",
        "name": "1.14.1",
        "release_target": "1.14.1",
        "type": "release",
        "stable": false, // HERE
        "data_version": 1957,
        "protocol_version": 480,
        "data_pack_version": 4,
        "resource_pack_version": 4,
        "build_time": "2019-05-13T11:08:37+00:00",
        "release_time": "2019-05-13T11:10:12+00:00",
        "sha1": "770df8fddfd27061560507267eccb650345b61e2"
      },
    
    wontfix ✨ version-metadata 
    opened by MMK21Hub 3
  • pack.mcmeta does not update

    pack.mcmeta does not update

    More specifically data/pack.mcmeta https://github.com/misode/mcmeta/blob/data/pack.mcmeta. The pack_format should already be at 9, but its currenty (and since 2 years) sitting at pack_format 6. resources/pack.mcmeta seems to update normally.

    bug ✨ version-metadata 
    opened by Metroite 1
  • Not sorting where neccessary in several cases

    Not sorting where neccessary in several cases

    This leads to showing a diff in actually unchanged files.

    Unsorted advancement criteria in husbandry/complete_catalogue advancement Unsorted stew effects in chests/ancient_city_ice_box An example for both can be seen in https://github.com/misode/mcmeta/commit/48383594930d2e08209d0395fe48564cfb35c05b.

    bug ✨ stabilize-ordering 
    opened by Devon7925 0
Owner
Misode
Misode
An easy way to build PyTorch datasets. Modularly build datasets and automatically cache processed results

EasyDatas An easy way to build PyTorch datasets. Modularly build datasets and automatically cache processed results Installation pip install git+https

Ximing Yang 4 Dec 14, 2021
Related resources for our EMNLP 2021 paper

Plan-then-Generate: Controlled Data-to-Text Generation via Planning Authors: Yixuan Su, David Vandyke, Sihui Wang, Yimai Fang, and Nigel Collier Code

Yixuan Su 61 Jan 3, 2023
Gesture-controlled Video Game. Just swing your finger and play the game without touching your PC

Gesture Controlled Video Game Detailed Blog : https://www.analyticsvidhya.com/blog/2021/06/gesture-controlled-video-game/ Introduction This project is

Devbrat Anuragi 35 Jan 6, 2023
Control-Robot-Arm-using-PS4-Controller - A Robotic Arm based on Raspberry Pi and Arduino that controlled by PS4 Controller

Control-Robot-Arm-using-PS4-Controller You can see all details about this Robot

MohammadReza Sharifi 5 Jan 1, 2022
MohammadReza Sharifi 27 Dec 13, 2022
TianyuQi 10 Dec 11, 2022
Locally cache assets that are normally streamed in POPULATION: ONE

Population One Localizer This is no longer needed as of the build shipped on 03/03/22, thank you bigbox :) Locally cache assets that are normally stre

Ahman Woods 2 Mar 4, 2022
Pytorch implementation of CoCon: A Self-Supervised Approach for Controlled Text Generation

COCON_ICLR2021 This is our Pytorch implementation of COCON. CoCon: A Self-Supervised Approach for Controlled Text Generation (ICLR 2021) Alvin Chan, Y

alvinchangw 79 Dec 18, 2022
A Distributional Approach To Controlled Text Generation

A Distributional Approach To Controlled Text Generation This is the repository code for the ICLR 2021 paper "A Distributional Approach to Controlled T

NAVER 102 Jan 7, 2023