← LibraryActor–Critic MethodsProject Management · Project Risk ManagementLesson 5/18← PrevNext →
ArticlePublished 6 Jul 20262 min readBy Kevin Joginactor-criticadvantage estimationGAEvalue baseline

Project ManagementProject Risk ManagementAlgorithms for Decision MakingChapter 12

12Part II · Sequential Problems

Actor–Critic Methods

The two halves of Part II, joined: a forecaster that judges how good the situation is, and a decider that acts on the judgement — each sharpening the other.

Chapter 12 of 26 11 min read Original KEVOS® synthesis

Part II has run two threads — estimating the value of situations, and directly tuning the decision rule. Actor–critic methods weave them into one.

Value-based methods (Chapters 6–8) ask "how good is this state?" and act greedily. Policy methods (Chapters 9–11) tune the decision rule directly but lean on noisy outcome signals. Actor–critic methods take the best of both: a critic that learns to judge situations, feeding a lower-noise signal to an actor that improves the decision rule. It is the synthesis the whole part has been building toward, and the backbone of modern reinforcement learning.

1Two roles, one loop

The actor is the policy — it chooses actions. The critic is a value function — it estimates how good the current situation and the actor's choices are. Instead of judging each decision against the raw, noisy final return (as bare policy gradients do), the actor is updated using the critic's assessment, which is far steadier. In turn, the critic learns from what actually happens as the actor acts. Each improves because the other does.

Actor the policy — decides Critic the value — judges Environment the project action reward + next state advantage signal
Figure 1. The actor decides; the environment (the project) responds; the critic evaluates the result and passes a cleaned-up "advantage" signal back to the actor. Forecasting and action improve together in a single loop.

2The advantage signal, and refinements

The critic's most useful output is the advantage: how much better (or worse) an action turned out than the critic expected. Positive advantage reinforces the choice; negative discourages it. Generalized advantage estimation tunes the trade-off between a low-noise but slightly biased advantage and a high-noise but unbiased one. A deterministic policy gradient variant suits continuous actions, and pairing an actor–critic with the tree search of Chapter 8 produces the class of systems that mastered games like Go — a learned critic guiding the search, the search improving the actor.

Key idea

An actor decides and a critic judges. Because the actor learns from the critic's steady assessment rather than from raw noisy outcomes, the pair improves faster and more reliably than either approach alone.

What it means in practice

The most effective risk operating models pair the same two roles: a forecasting capability that continuously assesses how healthy each project is, and a decision function that acts on those assessments — with each feeding the other. The forecaster tells the decision-maker not just the outcome but whether it beat expectations; the decision-maker's actions give the forecaster fresh evidence to sharpen its judgement. Neither the dashboard nor the playbook works nearly as well in isolation.

Continue learning

NEXT LESSON →Algorithms for Decision MakingArticle · Project Risk ManagementApproximate Value FunctionsArticle · Project Risk ManagementExact Solution MethodsArticle · Project Risk ManagementInferenceArticle · Project Risk Management