Update README.md
Browse files
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(
|
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 |
|