enpasos / muzero

Apache License 2.0
13 stars 2 forks source link

Help wanted: single player mode #2

Open lukaszkn opened 2 years ago

lukaszkn commented 2 years ago

Hi @enpasos,

Any idea how to implement single player games? E.g. Cartpole, Lunar Lander or Breakout? And print out current max score archived.

Thanks in advance.

enpasos commented 2 years ago

Hi @lukaszkn.

So far I've been focusing on board games, with the goal of getting MuZero running stably up to Go9x9, with proof of the level of play achieved. I felt that this was necessary for me to understand how to get MuZero running successfully on a small budget. Based on this, I would like to redesign the code so that each game can be easily plugged into the general framework, with clear separation of the framework and the respective game with its environment.

What needs to be done for Atari like games:

enpasos commented 2 years ago

For single player games with only a final reward you certainly need less - something like:

enpasos commented 2 years ago

Added:

lukaszkn commented 2 years ago

Nice, thanks much for your work!