Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devtomatocake/mccnextsnapshot
Some ML stuff to return a prediction of how likely a new Minecraft snapshot is released today
https://github.com/devtomatocake/mccnextsnapshot
minecraft
Last synced: about 2 months ago
JSON representation
Some ML stuff to return a prediction of how likely a new Minecraft snapshot is released today
- Host: GitHub
- URL: https://github.com/devtomatocake/mccnextsnapshot
- Owner: DEVTomatoCake
- Created: 2024-01-21T18:00:14.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T03:39:03.000Z (5 months ago)
- Last Synced: 2024-08-24T04:37:21.614Z (5 months ago)
- Topics: minecraft
- Language: JavaScript
- Homepage: https://mcc-next-snapshot.pages.dev
- Size: 504 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minecraft Next Release Prediction
Some ML stuff to return a prediction of how likely a new Minecraft release is happening today (or at any date).
## How it works
Parameters:
- Mmount of snapshots in the last 3 weeks
- How many days of the year passed
- Hours since the last Minecraft version was released
- Current day of week, a number from 1-7 for Monday-Sunday
- How many bugs have been marked as fixed on [Mojira](https://bugs.mojang.com) in the last 24 hours
- TODO: How many messages boq has sentFor the model, only data from the last four years is used.
## Usage
```bash
# Install dependencies
npm i# Download fixed bugs from Mojira
node bugs.cjs# Download Minecraft versions and generate the .csv file
node index.cjs# Train & build the model
node model.js
```## Idea
Originally suggested on the [Minecraft Commands Discord](https://discord.gg/QAFXFtZ) by [Picarrow](https://discord.com/channels/154777837382008833/1194713988068540466).