Browse Source

Fixed issue with default reward_threshold

Maxime Chevalier-Boisvert 6 years ago
parent
commit
5d9e8cab8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gym_minigrid/register.py

+ 1 - 1
gym_minigrid/register.py

@@ -5,7 +5,7 @@ env_list = []
 def register(
     id,
     entry_point,
-    reward_threshold=900
+    reward_threshold=0.95
 ):
     assert id.startswith("MiniGrid-")
     assert id not in env_list