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∼πβ[log∑a′expQ(s,a′)]−E(s,a)∼D[Q(s,a)])+Bellman — the log-sum-exp term pushes up Q for all actions (soft-max approximating
maxa′), while the data-expectation term pushes up Q only on in-dataset
(s,a); the difference systematically lowers OOD actions while keeping in-data Q truthful.