You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains PyTorch implementations of deep reinforcement learning algorithms and environments.
10
+
This repository contains PyTorch implementations of deep reinforcement learning algorithms and environments. (To help you remember things you learn about RL in general write them in [Save All](https://www.saveall.ai/))
11
11
12
12
## **Algorithms Implemented**
13
13
@@ -110,7 +110,7 @@ conda activate myenvname
110
110
111
111
pip3 install -r requirements.txt
112
112
113
-
python Results/Cart_Pole.py
113
+
python results/Cart_Pole.py
114
114
```
115
115
116
116
For other games change the last line to one of the other files in the Results folder.
@@ -120,4 +120,4 @@ For other games change the last line to one of the other files in the Results fo
120
120
Most Open AI gym environments should work. All you would need to do is change the config.environment field (look at `Results/Cart_Pole.py` for an example of this).
121
121
122
122
You can also play with your own custom game if you create a separate class that inherits from gym.Env. See `Environments/Four_Rooms_Environment.py`
123
-
for an example of a custom environment and then see the script `Results/Four_Rooms.py` to see how to have agents play the environment.
123
+
for an example of a custom environment and then see the script `Results/Four_Rooms.py` to see how to have agents play the environment.
0 commit comments