Dear Reviewer mtMd,
Thank you for your detailed feedback and insightful comments.
We are pleased that you found value in the simplicity, theoretical justification, and comprehensive experimental evaluation of our method.
Your recognition of the ablation studies, confidence intervals, and the intuition provided by Figure 1 is particularly encouraging, as we aimed to present a clear and rigorous evaluation.
## Motivation
We acknowledge that our paper could better consolidate its motivations.
We do not seek to entirely replace existing methods, but rather to offer a new perspective and practical insights for deep off-policy RL.
Rather than relying on the usual Q-functions, it focuses on V-functions exclusively.
A practical consequence that follows is better suitability for high-dimensional action spaces since this eliminates the need to learn over the joint state-action space, making the method less susceptible to the curse of dimensionality, and more effective in updating the critic regardless of the action.
Our initial focus was on demonstrating the general feasibility and benefits of such a setting against original baselines, like SAC, which typically serve as the basis for various improvements and variations.
This includes providing theoretical insights regarding variance and methodology while drawing parallels to the linear domain, and lastly transferring these ideas into a practical and functional deep learning algorithm.
As for V-trace, while our main goal is not necessarily to simply improve it, V-trace is the best directly comparable baseline for our setting.
However, as discussed in the main paper, it naturally has certain shortcomings that can be avoided due to the different foundation of Vlearn.
Finally, while we believe this shift away from state-action value learning to state value learning could potentially have implications for scaling RL, we do not consider this the main goal of this work.
We tried to incorporate this motivation more clearly into our revised introduction.
## Baseline Comparison
We see this work as a "vanilla" approach of an alternative direction to the main branch of current deep off-policy RL research.
We think making changes to Vlearn, such as replacing target networks with BatchNorm/LayerNorm for stabilization, distributional critics, or other choices, are orthogonal to our line of work and are interested in our future work which ideas for Q-function-based methods also translate to Q-function-free approaches.
For these reasons, we believe original baselines, such as SAC, provide a fair comparison.
We have now also added additional evaluations on the $39$-dimensional MyoHand from MyoSuite using the same setting as for DMC's dog to cover a larger variety of tasks and provide evidence outside of the standard locomotion tasks.
Similar to the initial submission, where we could show competitive performances on DMC's dog, Ant and Humanoid, our method is also able to learn consistently for MyoSuite and achieves a significantly better aggregated performance.
## Citations and Clarifications
In the updated version, we revised the abstract and added citations and minor improvements as mentioned by the reviewer.
We also did clarify, which "target" we are referring to.
However, we wanted to point out that l.177 seems to be a misunderstanding, we do not refer to the current estimate as target.
The intended meaning of this sentence was "[...] interpolating between the Bellman target and the current value function $(1 − \rho_t)V_\theta (s_t)$ or target value function $(1 − \rho_t)V_\bar\theta (s_t)$ in the 1-step case".
This was an effort to generalize for cases with and without target network, but we agree this might be confusing and removed it.
## Importance Sampling and Replay Buffer
Although our setting is off-policy, the importance sampling in general remains relatively similar to that of the on-policy setting.
The changing target distribution is also present when updating the policy via importance sampling, e.g. in PPO.
At the same time, the mini-batching, which is typically used in on-policy methods, is effectively acting as a small temporary replay buffer.
As a result, we can expect similar instabilities as in those methods since the policy is updating rather slowly and is naturally bounded by leveraging a trust region via TRPL.
However, one additional source of instability, which is significantly more relevant for the off-policy setting, is the "age"/staleness of samples, i.e. the discrepancy between the two policies used for importance sampling.
As shown in our ablation results, leveraging the weighted importance sampling loss, importance weight clipping, etc. can alleviate these issues to ensure stable training.