PyTorch implementation of different Deep RL algorithms for the LunarLander-v2 environment in OpenAI Gym
Implemented 3 different RL algortihms to solve the LunarLander-v2 environment:
- Imitation Learning
- REINFORCE
- Advantage-Actor-Critic (A2C)
Note: Imitation Learning is implemented in Keras and the other two algorithms in PyTorch
Instructions:
-
Install all the dependencies
-
Clone the repo
-
Run the below commands:
3.1) python imitation.py 3.2) python reinforce.py 3.3) python a2c.py
This is in collaboration with https://github.com/tejaskhot