Reinforcement / Methods
verifiedActor-Critic
Two learners working together: an actor that chooses what to do and a critic that judges how good the situation is. The actor improves using the critic's opinion rather than waiting for the final score, and the critic improves from what actually happens. It is the marriage of the two families — policy gradients and value functions — and most modern methods are in it.
The critic supplies the baseline that policy gradients need, turning a whole-trajectory return into a per-step advantage. The cost is a second network to train and a second thing to go wrong: a critic that is wrong early sends the actor somewhere bad, and the actor's new behaviour then supplies the critic with data from that bad place.
The actor follows ∇log π(a|s)·A(s,a) with A estimated by the critic, commonly as a generalised advantage — an exponentially weighted average over n-step errors, with λ trading the critic's bias against the return's variance exactly as TD(λ) does. PPO is this with a clipped ratio in place of the raw gradient step.
critic-share holds 50% of the budget; rest holds the remaining 50%.
Update signal coming from the critic's estimate against the part coming from observed reward, in equal units. Drag the critic's weight to watch the actor stop waiting for the episode to end.
Reviewed by opendroid · 2026-08-17
- arXiv:1602.01783 — Asynchronous Methods for Deep Reinforcement Learning
- arXiv:1506.02438 — High-Dimensional Continuous Control Using Generalized Advantage Estimation