-Return-based metrics such as trajectory quality (TQ) [@schweighofer2022dataset] or the average Q-value [@asadulaev2025expert] can inform algorithm decision. For example, @schweighofer2022dataset show that behavioral cloning (BC) performs well despite its simplicity if the dataset has a high TQ. For datasets with low TQ, algorithms from the DQN family perform well in their experiments as they do not constrain the learned policy towards the distribution of the behavioral policy. TQ normalizes the average return of a dataset with respect to the returns obtained by a minimal performant and an expert policy. To provide similar insights without relying on such additional information, estimated relative return improvement (ERI) [@swazinna2021measuring] relates the maximum trajectory return in the dataset to its average return. While ERI and TQ operate on a trajectory level, average Q-value estimation offers insights on the tuple level, making it a better predictor of offline RL performance [@asadulaev2025expert]. It requires fitting a Q-function using Bellman updates, which is closely related to the objectives used in offline RL training. However, for continuous action spaces, the user needs to provide an evaluation policy to predict the next actions in the Bellman target. Such a policy can, for example, be obtained using BC on the dataset.
0 commit comments