Reinforcement Learning

Explore Reinforcement Learning through related topics and the articles other pages reference most.

Explore articles

Reset filters
Browse subtopics: Deep Learning

Articles that also belong to these categories. Counts cover all of Reinforcement Learning.

Showing 1-12 of 12 articles

Actor-critic methods

Actor-critic methods are a family of reinforcement learning algorithms that learn two things at once: a parameterized policy, called the actor, which chooses actions, and a value function, called the critic

AlgorithmsDeep Learning

Critic

A critic in reinforcement learning (RL) is the component of an actor-critic system that estimates a value function, scoring how good the actor's chosen actions are and converting that judgment into a…

Deep LearningMachine Learning

DQN

The Deep Q-Network (DQN) is a model-free, off-policy reinforcement learning algorithm that combines Q-learning with a deep neural network function approximator, learning to act directly from raw pixels.

Deep LearningGoogle DeepMind

Replay Buffer

A replay buffer (also called an experience replay buffer or replay memory) is a fixed-size memory that stores an off-policy reinforcement learning agent's past transitions, each a tuple of state, action…

Deep LearningMachine Learning

Soft Actor-Critic

Soft Actor-Critic (SAC) is an off-policy, maximum-entropy deep reinforcement learning algorithm that trains a stochastic actor-critic to maximize expected reward plus the entropy of its own policy, so the…

AlgorithmsDeep Learning

Twin Delayed DDPG

Twin Delayed Deep Deterministic Policy Gradient (TD3) is an off-policy actor-critic reinforcement learning algorithm for continuous action spaces, introduced by Scott Fujimoto, Herke van Hoof, and David Meger…

AlgorithmsDeep Learning