Reinforcement Learning Course: Intro to Advanced Actor Critic Methods

Actor critic methods are used in machine learning. They are most useful for applications in robotics as they allow us to output continuous, rather than discrete actions. This enables control of electric motors to actuate movement in robotic systems, at the expense of increased computational complexity. 💻 Code for the algorithms covered: 🔗 Actor Critic: 🔗 Deep Deterministic Policy Gradients (DDPG): 🔗 Twin Delayed Deep Deterministic Policy Gradients (TD3): 🔗 Proximal Policy Optimization (PPO):
Back to Top