werner-duvaud / muzero-general

MuZero
https://github.com/werner-duvaud/muzero-general/wiki/MuZero-Documentation
MIT License
2.46k stars 606 forks source link

2 players moving simultaneously #161

Open omgmax opened 3 years ago

omgmax commented 3 years ago

Hello,

Every 2 player game implemented is turn based.

Do you mind providing an example or advising on how to make a game where both players make simultaneous turns?

Also, is this algorithm suitable for realtime games with small action spaces?

Thank you

ahainaut commented 2 years ago

Hello, I think the situation you describe correspond to a Multi agent setting. In this case, MuZero is not really suitable for this type of configuration. You could also consider a single agent setting in which the environment is stochastic. Again Muzero is not the best option to work with stochastic environment. Hope this helps.

0xJchen commented 2 years ago

Hello, I think the situation you describe correspond to a Multi agent setting. In this case, MuZero is not really suitable for this type of configuration. You could also consider a single agent setting in which the environment is stochastic. Again Muzero is not the best option to work with stochastic environment. Hope this helps.

Hi, @ahainaut. Does it make sense for homogeneous players to share the network (like self-play in multi-player game like poker)?