Nathan-Nesbitt / Minecraft_AI

An in game AI implementation for Minecraft Education
MIT License
4 stars 2 forks source link

Add Predict Mine Task #18

Closed kzlecha closed 3 years ago

kzlecha commented 3 years ago

Lesson: Predict Where to Mine for a Specific Material

General Flow:

lesson = PredictMineLesson()
lesson.pick_model(model_name)
self.process_data()
self.train_model()
response = self.game_response(loc_current,  self.predict())

Response Format:

        response = {
            "prediction": {
                "X": 10,
                "Y": 10,
                "Z": 10
            },
            "error": 10,
            "bot-action": "Say"
        }

Issue: https://github.com/Nathan-Nesbitt/Minecraft_AI/issues/17

@Carlos-Rueda-Carrasco let me know if you want any changes to make your part easier

kzlecha commented 3 years ago

Looks good, I am developing on broker-development, not the v2 version. Not sure if you want to keep it separate or merge it into my newest branch

Oh. I guess we’ll just drop this and merge into that branch then

sonorousAd commented 3 years ago

great stuff!