**Related Work:** Thank you for the remark, we are happy to discuss how to incorporate these papers. However, while the proposed works address interesting problems, we are not exactly sure how to incorporate them into the related work section. While these methods could potentially benefit from using Infoprop rollouts, e.g. being less conservative wrt. safety certification as the uncertainty can be specified more precisely, their key contributions are different from our approach. So from our understanding, these works are potential application fields of Infoprop but not primarily works we need to differentiate our approach from. Do you agree on this or did we get you wrong?
Further, we are not aware of further literature regarding information theory in MBRL to discuss in the related work section. In case you have works in mind we missed, we would be happy to incorporate them.
**W1:** Thank you for well thought through feedback. We have added an ablation study in Appendix E.4, investigating the instabilities in learning resulting from training the agent using high-quality data. We performed experiments on the Hopper task with three different values for the hyperparameter $\zeta_1$. The smaller the value of $\zeta_1$, the more aggressive the filtering of single-step information losses, resulting in fewer inaccurate model transitions being added to the replay buffer. We observe that the training destabilizes for the lower value of $\zeta_1=0.97$. In fact, the higher value $\zeta_1=0.9999$ gives a more stable learning performance.
We hypothesize that using higher-quality data in MBRL causes the same destabilizing issues faced by model-free RL (MFRL) when using a high update-to-data (UTD) ratio[1][2]. To counteract this effect, different regularization approaches have been developed for MFRL, the most prominent of which is layer normalization[3][4]. We performed a separate set of experiments using layer normalization for the actor and critic networks and observed that this does stabilize training even for $\zeta_1=0.97$. Hence, in our opinion, the instabilities we report are not due to our proposed rollout scheme rather due to pre-existing failure cases with the model-free agent. Since the objective of this paper is to lay out the mathematical framework for Infoprop, and show its applicability to MBRL, we do not do extensive hyperparameter tuning or incorporate regularization in the main results.
[1] The primacy bias in deep reinforcement learning, Nikishin et al., 2022.
[2] Sample-efficient reinforcement learning by breaking the replay ratio barrier, D'Oro et al., 2023.
[3] Demonstrating a Walk in the Park: Learning to Walk in 20 Minutes With Model-Free Reinforcement Learning, Smith et al., 2023.
[4] Overestimation, Overfitting, and Plasticity in Actor-Critic: the Bitter Lesson of Reinforcement Learning, Nauman et al., 2024.
**Q1:** As mentioned in W1, the overfitting is more prominent when using more aggressive filtering of model transitions, which gives better quality data. We have shown that regularization approaches developed for using high UTD in MFRL can be used to mitigate the instabilities in learning.
**Q2:** Q3: There is a set of requirements for the metrics used for such a rollout:
- The resulting RV needs to follow the environment distribution.
- The resulting sequence of RVs needs to provide a notion of information loss.
- This notion of information loss needs to allow for a feasible cutoff criterion (e.g. as the conditional entropy sums up over the trajectory we can simply use thresholding).
- The mechanism needs to be numerically tractable.
Generally, there might be different metrics fulfilling these requirements. However, we consider it nontrivial to come up with a method building on a different metric that fulfills all of the requirements above.