agcagc commited on
Commit
08a0ba6
1 Parent(s): d2587a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -30,6 +30,6 @@ model-index:
30
  model = load_from_hub(repo_id="agcagc/q-FrozenLake-v1-8x8", filename="q-learning.pkl")
31
 
32
  # Don't forget to check if you need to add additional attributes (is_slippery=False etc)
33
- env = gym.make(model["env_id"])
34
  ```
35
 
 
30
  model = load_from_hub(repo_id="agcagc/q-FrozenLake-v1-8x8", filename="q-learning.pkl")
31
 
32
  # Don't forget to check if you need to add additional attributes (is_slippery=False etc)
33
+ env = gym.make('FrozenLake-v1', desc=None, map_name="8x8", is_slippery=True, max_episode_steps=max_steps)
34
  ```
35