CM50270: Reinforcement Learning Project
- Model-Free
- VPG
- PPO
- DDPG
- SAC
- Install Anaconda
- Install OpenAI Spinning Up
- MuJoCo(physics engine) - Paid: But free for students
- OpenAI Gym - Free
- Classic control
- Box2D
In your agent, import
from gym import wrappers
from time import time # just to have timestamps in the files
Then, insert a wrapper call after you make the env.
env = gym.make(ENV_NAME)
env = wrappers.Monitor(env, './videos/' + str(time()) + '/')
This will save .mp4 files to ./videos/1234/something.mp4
- Project Report(Overleaf Link)
- video presentation of the project
- source code
- video of agent performance before and after learning
- Rendering issue
- David Silver
- OpenAI Gym
- Grant Sanderson
- Deep RL Course
- RL Unit Session
- Frameworks