Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 openai-gym 中,我想让 FrozenLake-v0 作为确定性问题工作。所以,我需要设置变量 is_slippery=False。
如何在初始化环境时将其设置为 False?
官方代码中对变量的引用
您所要做的就是在创建环境时传递 is_slippery=False 参数:
import gym env = gym.make('FrozenLake-v0', is_slippery=False)