Closed smdsbz closed 6 years ago
Got AttributeError: module 'gym' has no attribute 'benchmark_spec' thrown from this line.
AttributeError: module 'gym' has no attribute 'benchmark_spec'
gym no longer have this experimental feature, manually setting env = gym.make(game_name) and max_timestep as mentioned from here as workaround.
gym
env = gym.make(game_name)
max_timestep
Thanks for pointing this out. We'll fix it in the Fall 2018 version of HW3.
Got
AttributeError: module 'gym' has no attribute 'benchmark_spec'
thrown from this line.gym
no longer have this experimental feature, manually settingenv = gym.make(game_name)
andmax_timestep
as mentioned from here as workaround.