Scientific Initiation (2019 - 2020) in Deep Reinforcement Learning at Getulio Vargas Foundation, supervised by Dr. Jorge Poco.
If you wanna know the current state of my studies, see my presentation.
In this repository, you'll find implementations of:
- CartPole-v0 random search policy
- FrozenLake8x8-v0 value iteration
- FrozenLake8x8-v0 policy iteration
- MountainCar-v0 Q-learning
- MountainCar-v0 deep Q-learning
Clone this repository:
git clone https://github.com/lucasresck/deep-reinforcement-learning.git
All Python files can be run in this way:
python mountaincar_deep_q_learning.py
Some files have special arguments:
For training and saving the model:
python mountaincar_deep_q_learning.py
For running the saved model:
python mountaincar_deep_q_learning.py --run
For saving a video from the trained model:
python mountaincar_deep_q_learning.py --run --record
For training and saving the model:
python mountaincar_q_learning.py
For running the saved model:
python mountaincar_q_learning.py --run