我已经安装了 OpenAI gym 和 ATARI 环境。我知道我可以在 documentation 中找到所有的 ATARI 游戏,但是有没有办法在 Python 中做到这一点, 而无需 打印任何其他环境(例如,不是经典控制环境)

最佳答案

您可以通过在 list_games() 上调用 atari_py 来实现这一点:

>>> import atari_py as ap
>>> game_list = ap.list_games()
>>> print(sorted(game_list))
<<< ['adventure',
     'air_raid',
     'alien',
     'amidar',
     'assault',
     'asterix',
     'asteroids',
     'atlantis',
     'bank_heist',
     'battle_zone',
     'beam_rider',
     'berzerk',
     'bowling',
     'boxing',
     'breakout',
     'carnival',
     'centipede',
     'chopper_command',
     # ...
     ]

关于deep-learning - OpenAI 健身房 : How to get complete list of ATARI environments,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44389007/

10-12 23:14