Back to Reinforcement Learning Mind Map
中文·English
🎮 Reinforcement LearningID: cql

Conservative Q-Learning

CQL 保守 Q 学习
🎯Core Definition
Conservative Q-Learning (CQL) is a SOTA offline RL baseline that adds a conservative regularizer to the standard Bellman update, systematically suppressing Q-estimates of OOD actions: minQα(Eaπβ[logaexpQ(s,a)]E(s,a)D[Q(s,a)])+Bellman\min_Q \alpha \left( \mathbb{E}_{a \sim \pi_\beta} \left[ \log \sum_{a'} \exp Q(s,a') \right] - \mathbb{E}_{(s,a) \sim \mathcal{D}}[Q(s,a)] \right) + \text{Bellman} — the log-sum-exp term pushes up Q for all actions (soft-max approximating maxa\max_{a'}), while the data-expectation term pushes up Q only on in-dataset (s,a)(s,a); the difference systematically lowers OOD actions while keeping in-data Q truthful.
💡Use Cases
offline decisions without online interaction — recommender/ads logs, safety-critical robot and driving control; also a common initialization for offline-to-online fine-tuning.
Key Problems Solved
provable conservatism — the learned Q^π\hat{Q}^\pi is a lower bound on the true QπQ^\pi (pointwise Q^π(s,a)Qπ(s,a)\hat{Q}^\pi(s,a) \le Q^\pi(s,a)): the regularizer injects a conservative offset per state and Bellman iterations preserve the bound, so policy optimization never chases inflated OOD Q-values — extrapolation error is severed at the value level.
🎯5 High-Frequency Exam Points
1
Why does CQL yield a Q lower bound? Write the CQL objective and give the derivation intuition for Q^πQπ\hat{Q}^\pi \le Q^\pi.
2
What do the log-sum-exp term and the data-expectation term do? Why soft-max instead of max?
3
CQL vs policy-constraint methods (BCQ / TD3+BC): conservative value vs constrained policy?
4
How does CQL's coefficient α\alpha trade off conservatism vs optimality? Consequences of too large or too small?
5
How does CQL's Q lower bound serve offline-to-online fine-tuning?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Conservative Q-Learning"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardGAIL & Inverse RLNext CardImplicit Q-Learning

🔗 More Reinforcement Learning Knowledge Cards

Actor-CriticBehavioral CloningContextual BanditCoT & Reasoning RL