the.ai

Reinforcement / Methods

verified

Actor-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.

Viz primitive · budget-splitcritic-share = 5

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.

5

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