Papers
Topics
Authors
Recent
Search
2000 character limit reached

Debiased Model-based Representations for Sample-efficient Continuous Control

Published 12 May 2026 in cs.LG and cs.AI | (2605.11711v1)

Abstract: Model-based representations recently stand out as a promising framework that embeds latent dynamics information into the representations for downstream off-policy actor-critic learning. It implicitly combines the advantages of both model-free and model-based approaches while avoiding the training costs associated with model-based methods. Nevertheless, existing model-based representation methods can fail to capture sufficient information about relevant variables and can overfit to early experiences in the replay buffer. These incur biases in representation and actor-critic learning, leading to inferior performance. To address this, we propose Debiased model-based Representations for Q-learning, tagged DR.Q algorithm. DR.Q explicitly maximizes the mutual information between the representations of the current state-action pair and the next state besides minimizing their deviations, and samples transitions with faded prioritized experience replay. We evaluate DR.Q on numerous continuous control benchmarks with a single set of hyperparameters, and the results demonstrate that DR.Q can match or surpass recent strong baselines, sometimes outperforming them by a large margin. Our code is available at https://github.com/dmksjfl/DR.Q.

Summary

  • The paper introduces DR.Q, a novel method that debiases representation learning in continuous control tasks to achieve significant improvements in sample efficiency.
  • It employs an InfoNCE loss to boost mutual information in latent dynamics and a faded prioritized experience replay to focus updates on recent, high-error transitions.
  • Empirical evaluations across 73 diverse tasks demonstrate that DR.Q consistently outperforms strong baselines, showcasing its robustness and scalability.

Debiased Model-based Representations for Sample-efficient Continuous Control: A Technical Analysis

Model-based Representation Learning in Off-policy RL

The paper introduces DR.Q, a method for model-based representation learning aimed at improving sample efficiency in continuous control tasks by debiasing the learning of latent dynamics representations. Model-based RL methods offer potential sample efficiency improvements over model-free approaches by leveraging world models for planning or data augmentation, but existing representation learning pipelines are limited by insufficient mutual information between the learned representations and the true underlying dynamics, and by biases intrinsic to experience replay mechanisms. DR.Q proposes a principled solution to these issues by explicitly maximizing mutual information in the latent space and introducing a novel replay sampling regime.

Methodology and Algorithmic Contributions

Debiasing Representation Learning via Mutual Information Maximization

A key theoretical and empirical motivation in DR.Q is that minimizing a latent dynamics consistency loss (such as MSE between representations of state-action pairs and next states) does not guarantee that the representations retain sufficiently high mutual information with respect to the underlying task-relevant dynamics. The paper formalizes and proves that this standard approach can lead to representational collapse or misalignment, particularly in environments with high-dimensional or partially irrelevant observation spaces.

To address this, DR.Q introduces an auxiliary InfoNCE loss to maximize a lower bound on the mutual information between the state-action representation and the subsequent state representation. This ensures that the representations possess richer task-relevant content, reducing the conditional entropy H(Zsโ€ฒโˆฃZsa)H(Z_{s'}|Z_{sa}) and resulting in more predictive and informative representations for downstream policy learning. The use of InfoNCE is well justified, given its tractability for high-dimensional mutual information estimation and established link to representation informativeness in unsupervised and self-supervised learning paradigms.

Faded Prioritized Experience Replay

The paper identifies primacy biasโ€”excessive overfitting to early or outdated transitionsโ€”as a major source of representational and policy learning inefficiencies in off-policy RL. Existing replay strategies such as uniform and prioritized experience replay (PER) fail to adequately discount the impact of stale transitions.

DR.Q develops a "faded prioritized" replay mechanism that combines PER (sampling transitions by temporal-difference error) and a forget mechanism (exponentially decreasing the sampling probability of older experiences). The combined effect focuses updates on more recent transitions with high TD error, thus simultaneously addressing the bias of over-sampling early experiences and ensuring efficient critic learning. Theoretical results in the paper provide formal properties and sampling guarantees for this strategy.

Complete Training Pipeline

DR.Q applies these two innovations to train encoder networks (state and state-action encoders along with a linear dynamics predictor), with a loss function consisting of reward prediction loss, latent consistency loss, and the InfoNCE loss. The policy and critic networks are trained using standard off-policy actor-critic techniques, notably clipped double Q-learning to mitigate overestimation bias.

Crucially, DR.Q uses a single set of hyperparameters across all evaluated domains, reinforcing the claim of generality.

Empirical Evaluation

Benchmarks and Metrics

DR.Q is extensively evaluated on 73 tasks across MuJoCo, DMC Suite (both vector and pixel-based variants), and HumanoidBench (with and without high-dimensional dexterous hand states). The environments represent a challenging spectrumโ€”ranging from low-dimensional and standard locomotion to high-dimensional, redundant state spaces with significant irrelevant observations.

Main Results

  • DR.Q demonstrates robust performance improvements: It matches or surpasses strong recent baselines such as SimBaV2, FoG, TDMPC2, and MR.Q in nearly all settings, often by substantial margins in challenging regimes (e.g., DMC-Hard, HumanoidBench w/ hands, DMC-Visual).
  • Sample efficiency gains are significant: On particularly challenging tasks (e.g., DMC dog-run), DR.Q achieves a normalized average return exceeding 700 under 1M environment stepsโ€”a marked improvement over prior methods.
  • Ablation studies underscore the necessity of both the InfoNCE loss and faded PER sampling. Removing either component leads to statistically significant and consistent performance drops, especially in high-dimensional settings prone to irrelevant input contamination.
  • Visualization and robustness experiments: DR.Q resists performance degradation when the state is artificially extended by high-dimensional Gaussian noise, demonstrating the effectiveness of its mutual information maximization in preventing representation collapse. TSNE visualizations confirm more structured, continuous latent spaces.

Numerical Highlights

  • DMC-Hard: DR.Q improves normalized mean returns by 15.5% over SimBaV2.
  • HumanoidBench (with hands): Achieves a 58.9% improvement over FoG.
  • DMC-Visual: Exceeds MR.Q by 26.8% in normalized returns.

Implications and Future Directions

The DR.Q framework advances the foundations of efficient RL in complex and high-dimensional continuous control by explicitly addressing representational and replay sampling biases. The explicit mutual information maximization aligns with broader advances in unsupervised and self-supervised learning, supporting the trend of integrating information-theoretic principles into policy learning. The faded PER methodology provides a new practical standard for replay buffer design in off-policy RL.

Practical implications include greater policy learning reliability in real-world robotic settings, where sample efficiency and robustness to high-dimensional sensors are essential. The ability to perform with a single hyperparameter set across diverse tasks facilitates deployment and benchmarking.

Theoretical implications suggest the need for further exploration of mutual information-based objectives, possibly with improved estimators or in combination with hierarchical or attention-based representations, as well as extending debiasing strategies to recurrent/partially observable settings.

Future developments envisaged include:

  • Evaluation on discrete action domains (e.g., Atari) to validate generality.
  • Extension to hard exploration and non-Markovian tasks, potentially requiring new exploration-driven or memory-augmented methods.
  • Development of more scalable mutual information estimators and adaptive fading mechanisms for experience replay.

Conclusion

DR.Q establishes a new standard for debiased model-based representation learning in continuous control RL, combining mutual information maximization and a principled experience replay regime for improved sample efficiency and versatility. Empirical results across an extensive suite of benchmarks validate both the independent and joint efficacy of its components, while theoretical analysis clarifies the limitations of prior approaches. DR.Qโ€™s methodological contributions can inform future research on robust, scalable, and efficient RL systems in both continuous and discrete control domains.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.