Rodrigo de Lazcano 2 years ago
parent
commit
0896c0e6bb
4 changed files with 4 additions and 4 deletions
  1. 2 2
      README.md
  2. 0 0
      minigrid/examples/benchmark.py
  3. 0 0
      minigrid/examples/manual_control.py
  4. 2 2
      tests/test_scripts.py

+ 2 - 2
README.md

@@ -94,13 +94,13 @@ pip install -e .
 There is a UI application which allows you to manually control the agent with the arrow keys:
 
 ```
-./minigrid/manual_control.py
+./minigrid/examples/manual_control.py
 ```
 
 The environment being run can be selected with the `--env` option, eg:
 
 ```
-./minigrid/manual_control.py --env MiniGrid-Empty-8x8-v0
+./minigrid/examples/manual_control.py --env MiniGrid-Empty-8x8-v0
 ```
 
 ## Reinforcement Learning

minigrid/benchmark.py → minigrid/examples/benchmark.py


minigrid/manual_control.py → minigrid/examples/manual_control.py


+ 2 - 2
tests/test_scripts.py

@@ -1,8 +1,8 @@
 import gym
 import numpy as np
 
-from minigrid.benchmark import benchmark
-from minigrid.manual_control import key_handler, reset
+from minigrid.examples.benchmark import benchmark
+from minigrid.examples.manual_control import key_handler, reset
 from minigrid.window import Window