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

Implicit Q-Learning

IQL expectile 回归
🎯Core Definition
Implicit Q-Learning (IQL) is a SOTA offline RL baseline built on expectile regression L2τ(u)=τ1(u<0)u2\mathcal{L}_2^\tau(u) = |\tau - \mathbb{1}(u<0)| u^2: for residual u=r+γQ(s,a)Q(s,a)u = r + \gamma Q(s',a') - Q(s,a), positive residuals get weight τ\tau and negative ones 1τ1-\tau; with τ0.70.9\tau \approx 0.7\text{–}0.9, the update mostly punishes underestimation and nearly ignores overestimation, so Q regresses to an upper quantile of the TD targets.
💡Use Cases
purely offline tasks (recommendation, decision logs, robot history); structurally simple (value + actor only) and well suited to offline-to-online fine-tuning.
Key Problems Solved
the expectile implicitly approximates maxaQ(s,a)\max_{a'} Q(s',a') without ever explicitly evaluating OOD actions — every update touches only (s,a)(s,a') pairs present in the data, eliminating extrapolation error by construction; a behavior-regularized actor then extracts the policy from the value (safe rather than greedy), yielding offline Q-learning that never queries OOD actions.
🎯5 High-Frequency Exam Points
1
How does IQL's expectile loss L2τ(u)=τ1(u<0)u2\mathcal{L}_2^\tau(u) = |\tau - \mathbb{1}(u<0)| u^2 work? Which quantile does τ1\tau \to 1 target?
2
Why does IQL never evaluate OOD actions? How does that fundamentally differ from CQL's explicit OOD penalization?
3
How do value extraction and policy extraction combine in IQL? What is the actor's objective?
4
How does the expectile implicitly approximate maxaQ(s,a)\max_{a'} Q(s',a')? The bias-variance trade-off?
5
How do IQL and CQL differ in offline-to-online settings, and why?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Implicit Q-Learning"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardConservative Q-LearningNext CardOffline-to-Online Fine-Tuning

🔗 More Reinforcement Learning Knowledge Cards

Actor-CriticBehavioral CloningContextual BanditCoT & Reasoning RL