google-deepmind/open_spiel

Inquiry about Available Tensor Games

menglinjian opened this issue · 1 comments

I’m interested in exploring the tensor games available in this repository. Could you please provide a list or some details on the different tensor games that are currently implemented? Additionally, any guidance on how to get started with them or examples would be greatly appreciated.

There are not many to be honest. (I assume you mean n>2 players).

I think n-player Blotto and matching_pennies_3p might be the only ones. They are NFGs but you can load them as tensor games. Here are some examples: https://github.com/google-deepmind/open_spiel/blob/master/open_spiel/python/tests/tensor_game_utils_test.py

There are more available in GAMUT, which you can load through OpenSpiel (as TensorGames), see here: https://github.com/google-deepmind/open_spiel/tree/master/open_spiel/games/gamut . It is an optional dependency not enabled by default, so support for it must be enabled when building OpenSpiel from source.

Hope this helps!