Browse Source

Increase max_steps in DoorKey to make it learnable (#15)

Lucas Willems 6 years ago
parent
commit
867477f48c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gym_minigrid/envs/doorkey.py

+ 1 - 1
gym_minigrid/envs/doorkey.py

@@ -9,7 +9,7 @@ class DoorKeyEnv(MiniGridEnv):
     def __init__(self, size=8):
         super().__init__(
             grid_size=size,
-            max_steps=4*size*size
+            max_steps=10*size*size
         )
 
     def _gen_grid(self, width, height):