Pith. sign in

REVIEW 3 major objections 7 minor 23 references

Video-Enhanced Offline Reinforcement Learning: A Model-Based Approach

T0 review · 3 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read The paper claims that unlabeled videos, converted into discrete latent behavior codes, can more than double offline reinforcement learning performance across manipulation, driving, and Minecraft tasks.

desk verdict VeoRL is a novel method with strong empirical gains from unlabeled video, but the paper never shows the latent subgoal distance in its intrinsic reward is semantically meaningful. read the letter →

arxiv 2505.06482 v2 pith:IFFSEQZU submitted 2025-05-10 cs.LG cs.AIcs.RO

classification cs.LGcs.AIcs.RO
keywords video-enhancedofflinereinforcementlearningworldmodelslatentbehaviorabstractionvectorquantizationintrinsicrewarddomainadaptationvisualcontrolmodel-basedRL
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper is trying to establish that offline reinforcement learning, which normally learns only from a fixed static dataset, can be substantially improved by also training on unlabeled videos from a different domain. The proposed method, VeoRL, learns a discrete set of 'latent behaviors' from videos, builds a second world-model branch that predicts long-term state transitions from those behaviors, and adds an intrinsic reward that keeps the agent's real-action rollouts close to the video-informed plan. On Meta-World robotic manipulation, CARLA autonomous driving, and MineDojo games, VeoRL reports gains over 100% in several tasks, with specific jumps such as Handle Press return from 1201 to 2650 and Harvest water with bucket success rate from 0.36 to 0.83. If this holds, it matters because unlabeled video is cheap and abundant, while reward-labeled interaction data is expensive, so the method offers a practical path to injecting commonsense physical knowledge into agents without annotations.

What carries the argument

The central object is the two-stream world model: a trunk net driven by real actions (trained only on the target offline dataset) and a plan net driven by learned latent behaviors (trained on both the target data and the source videos), sharing the image encoder and decoder but with separate dynamics parameters. The load-bearing mechanism is the intrinsic reward $\bar{r}_t = -\|s_t - \bar{s}_t\|^2$, the negative squared distance between the trunk net's short-term state and the plan net's long-term state; minimizing it aligns action-driven rollouts with video-informed subgoals. The latent behavior codebook from the behavior abstraction network is what makes the plan net trainable without action labels, and the maximum-mean-discrepancy loss is what lets those codes bridge the source-target domain gap.

What would settle it

A direct test would be to run VeoRL exactly as specified with a source video collection deliberately chosen to contain no behavior related to the target task, such as random scenery or unrelated object footage. If the intrinsic reward $\bar{r}_t = -\|s_t - \bar{s}_t\|^2$ still produces large gains, then the improvement is not caused by transferring video behaviors and the paper's central mechanism is falsified.

Watch

Extended reading notes

Core claim

VeoRL is a model-based offline RL algorithm whose central claim is that task-agnostic, unlabeled video can be converted into high-level behavior guidance that improves a target policy. A behavior abstraction network (BAN) uses vector quantization to map pairs of consecutive observations to one of $K$ discrete latent behavior codes, trained jointly with a video-prediction plan net on both the target offline data and the source videos, while a maximum-mean-discrepancy loss aligns the source and target visual embeddings. The world model then has two state-transition branches: a trunk net that predicts next states and rewards from real actions using only the target dataset, and a plan net that predicts long-term states from latent behaviors. During imagination the policy and value networks are conditioned on the behavior codes, and an intrinsic reward $\bar{r}_t = -\|s_t - \bar{s}_t\|^2$ pushes the trunk net's short-term rollouts toward the plan net's long-term predictions. The paper argues that this alignment transfers the control policies and physical dynamics embedded in the videos, and that this is what produces the reported performance gains.

Load-bearing premise

The method assumes that the behaviors visible in unrelated videos, after aligning their visual features with the target, correspond to actions that transfer, and that the long-term states predicted from those behaviors are useful goals rather than misleading states for the target task.

Editorial extensions

If this is right

  • Offline visual RL agents can be improved with cheap unlabeled video instead of additional reward-labeled interaction data.
  • The same algorithm transfers behavioral knowledge across very different benchmarks: robot manipulation, driving, and Minecraft.
  • Value learning relies less on sparse environmental rewards, which should reduce the overestimation bias that hurts offline RL.
  • Latent behavior codes trained on one task can be reused on another task with minimal degradation, lowering the cost of adapting to new tasks.
  • Offline-to-online fine-tuning starts from a video-informed policy and converges faster when the agent is later allowed to interact.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper, the mechanism suggests a research direction worth testing: performance should degrade smoothly as the source videos become less task-relevant, and the paper's own video-count ablation points in that direction.
  • A scale-invariant or normalized version of the intrinsic reward might reduce the need for the per-benchmark weight $\omega$, since state-feature scales differ strongly across environments.
  • The discrete latent behavior space could be the key transferable currency; if so, other architectures that learn such codes from video should show similar benefits, independent of the specific world-model design.
  • A stronger domain-alignment objective than MMD, such as adversarial alignment, might close the source-target gap further, but the paper does not test this.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 7 minor

Summary. The paper proposes VeoRL, a model-based offline visual RL method that augments a target offline dataset with unlabeled videos from a source domain. It trains a vector-quantized behavior abstraction network (BAN) on target-frame pairs to produce discrete latent behaviors, applies an MMD loss to align source and target image encoder features, and builds a two-stream world model: a trunk net driven by real actions and rewards, and a plan net driven by latent behaviors. Policy and value networks are conditioned on the inferred latent behavior, and an intrinsic reward (Eq. 5) is defined as the negative Euclidean distance between trunk and plan latent states and injected into the value targets (Eq. 6). Experiments on Meta-World, CARLA, and MineDojo report large gains over DreamerV2 and other baselines, with ablations isolating the contributions of the latent behavior input, the intrinsic reward, and the auxiliary videos, plus offline-to-online transfer experiments and qualitative analyses of latent behaviors.

Significance. If the results hold, VeoRL is a significant contribution: it targets a practically important problem (using action-free, unlabeled videos to improve offline visual RL), situates itself against relevant model-based, offline, and video-pretraining baselines, and reports large gains on external benchmarks. The evaluation design is largely non-circular: performance is measured on held-out task episodes, and the ablations show that each of the three proposed components matters. The main weakness is that the central mechanism—the intrinsic reward in Eq. (5)—relies on an unverified geometric assumption about the two latent state spaces, and some of the headline empirical claims lack tabulated numerical detail. With additional evidence for the mechanism and fuller reporting, this would be a strong paper.

major comments (3)
  1. [Section 3.3, Eq. (5)] The intrinsic reward is defined as the L2 distance between a trunk-net state s_t and a plan-net state \bar{s}_t. These states are produced by two RSSMs with separate GRU, prior, and posterior parameters; only the image encoder and decoder are shared (Eq. 2). The MMD loss in Section 3.1 is applied to image embeddings e_t, not to the state pairs (h_t,z_t) and (\bar{h}_t,\bar{z}_t), and Objectives (3) and (4) separately regularize each branch toward its own prior. Nothing in the objectives establishes that Euclidean distance in this combined latent space is a meaningful subgoal error. Because Eq. (6) adds \omega \bar{r}_t to every value target, the paper's central claim that video-guided behavior alignment improves value learning rests on this unverified assumption. I request either (i) a theoretical argument that the shared decoder/encoder and KL structure align the two state spaces into a common metric frame, or (ii) an empirical validation, such as showing that minimizing \|s_t - \bar{s}_t\| correlates with task-relevant progress, or comparing against a control where \bar{s}_t is replaced by matched random plan states with the same reward scale. This experiment is necessary to support the mechanistic interpretation; without it, the reported gains could be driven by other aspects of the two-branch training.
  2. [Section 4.1, Figures 4 and 5] The CARLA result ('as much as 350%' over DreamerV2) and the MineDojo improvements (0.10 to 0.35, 0.36 to 0.83, 0.27 to 0.55) are stated as text percentages or point values, but the paper does not provide a table with the mean episode returns or success rates with standard deviations for all baselines. Given that the paper emphasizes 3 random seeds and 50 evaluation episodes, the error bars are important for assessing whether the gains overlap across methods. Please add tabulated numeric results for CARLA and MineDojo, including all baselines and standard deviations, or explicitly point to where such tables appear in the appendix.
  3. [Table 2 and Section 4.2] The intrinsic-reward weight \omega differs by orders of magnitude across environments (0.05 for Meta-World, 0.1 for CARLA, 1e-5 for MineDojo), and no sensitivity analysis for \omega is reported. Since this hyperparameter directly controls how much the proposed intrinsic reward influences the value target, the reader cannot tell whether the method is robust or whether the reported results depend on a narrow range of \omega. Please include a sensitivity sweep for \omega on at least one continuous-control task and one discrete-control task, or provide a principled scheme for setting it.
minor comments (7)
  1. [Eq. (4)] The behavior-cloning term in the plan-net objective is written as -\ln p(\bar{a}_t | s_t), but Eq. (2) and the surrounding text define the behavior cloning module as \bar{a}_t = FBC(\bar{s}_t); this should presumably be s_t corrected to \bar{s}_t.
  2. [Section 4.3] The baseline name 'LAMPO' appears twice in the second design consideration; it should be 'LOMPO' to match the rest of the paper.
  3. [Section 4.1 and Table 3] The claim that VeoRL 'consistently achieves the best performance' in success rate is contradicted by Table 3 for Handle Pull, where VIP reports 0.36 ± 0.15 and VeoRL reports 0.30 ± 0.10, and for Handle Press, where VeoRL ties with DrQ+CQL at 0.60. Please qualify the claim or provide a statistical test of differences.
  4. [Section 4.4, Figure 8] The t-SNE visualization is qualitative; it would be more convincing to report a quantitative correspondence measure between latent behaviors and real-action clusters, such as cluster purity or normalized mutual information computed on held-out target trajectories.
  5. [Algorithm 1 and Section 3.1] Line 5 of Algorithm 1 trains BAN only on target observations, while source frames enter through the MMD loss and later plan-net training. This is clear in the text but should be stated explicitly in Algorithm 1 to avoid the impression that BAN is trained jointly on source videos.
  6. [Eq. (6)] There is a stray dot in the typeset equation 'V^λ_t ˙ ='; please fix the notation.
  7. [Section 5] The limitations paragraph discusses computational overhead only. In light of the major comment above, the paper should also acknowledge the assumption that the trunk and plan latent spaces are comparable and discuss when this assumption could fail.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the intrinsic-reward subgoals are trained by video prediction, not by the target returns, and the reported gains are measured on external held-out benchmarks.

full rationale

I traced the claimed derivation chain: unlabeled videos are converted into latent behavior codes by BAN (Eq. 1), the plan net is trained with reconstruction, behavior-cloning, and KL losses over both source and target data (Eq. 4), and the intrinsic reward in Eq. (5) is the negative Euclidean distance between trunk states and plan states. The plan net's long-term predictions are fitted to image-prediction and behavior-cloning objectives, not to the value function, the policy return, or the final benchmark scores; the policy is then optimized so that trunk rollouts approach these precomputed subgoals. The subgoal signal is therefore not defined in terms of the predicted performance, and no equation reduces a reported prediction to a fitted input. The MMD loss aligns image-encoder outputs only, which may be a correctness concern about whether the two latent spaces share a metric, but that is not a definitional or statistical circularity. The only self-citation (Wang et al., 2024, in the related-work list) is not load-bearing: no central claim rests on it. The ablations and comparisons are against independent baselines on held-out evaluation episodes, so the central empirical claim is not forced by the method's definitions. No circular step was found.

Assumptions & free parameters 5 free parameters · 6 assumptions · 4 invented entities

The method introduces several new components (BAN, codebook, plan net, intrinsic reward) that are not externally benchmarked. The central assumptions are that VQ captures meaningful behaviors, MMD aligns domains, and the l2 intrinsic reward transfers useful information. These are empirical premises supported only by the paper's ablations.

free parameters (5)
  • Codebook size K = 50 (best in Figure 9)
    The number of discrete latent behaviors was chosen from {5, 20, 50, 100} based on validation performance on Meta-World Handle Press and CARLA.
  • Intrinsic reward weight omega = Meta-World: 0.05; CARLA: 0.1; MineDojo: 1e-5
    Per-environment weight for the intrinsic reward in Eq. (6), tuned to achieve good results.
  • Entropy coefficient eta = 1e-4 (Meta-World, CARLA); 3e-4 (MineDojo)
    Entropy regularization weight in Eq. (7), set per environment.
  • Plan net loss weighting alpha = 1
    Weighting factor for the plan loss in the BAN objective; reported as 1 in Table 2, chosen by hand.
  • REINFORCE flag rho = 0 (Meta-World, CARLA); 1 (MineDojo)
    Whether to use REINFORCE gradient in Eq. (7), chosen per domain.
assumptions (6)
  • domain assumption The Recurrent State-Space Model (RSSM) is an adequate latent dynamics model for visual control.
    The method inherits Dreamer-style RSSM; if RSSM cannot capture environment dynamics, the whole world model fails.
  • domain assumption Vector quantization with a small discrete codebook can capture meaningful temporal transitions in video.
    BAN relies on VQ to produce 'behavior' codes; this is an empirical premise not proven in the paper.
  • domain assumption Maximum mean discrepancy (MMD) on image embeddings is sufficient to align source and target domains for behavior transfer.
    The MMD loss is applied to outputs of the image encoder to align visual embeddings; the paper provides one ablation (Table 7) supporting this, but it is a strong assumption.
  • ad hoc to paper Latent behaviors learned from the target offline dataset transfer to unlabeled source videos after alignment, and the plan net's long-term states are useful subgoals.
    This is the core assumption of the paper: if the codes do not transfer or the plan net predicts misleading states, the intrinsic reward would hurt. Section 3.1, Section 3.3.
  • ad hoc to paper L2 distance between trunk and plan state predictions is a valid intrinsic reward for behavior transfer.
    Eq. (5) defines r_bar_t = -||s_t - s_bar_t||^2; there is no theoretical or empirical validation that this quantity correlates with policy improvement beyond the reported ablations.
  • domain assumption The source videos (BridgeData-V2, NuScenes, Minecraft) contain behaviors relevant to the target tasks.
    The whole premise relies on the relevance of the auxiliary videos; the paper does not analyze the content overlap.
invented entities (4)
  • Behavior abstraction network (BAN)
    purpose: Learns discrete latent behaviors from unlabeled video via vector quantization and one-step video prediction.
    Internal component; no external validation beyond the paper's experiments.
  • Latent behavior codebook
    purpose: A set of K continuous vectors representing distinct behaviors; used to condition the plan net.
    Same as BAN; only validated through the paper's ablations and t-SNE visualization.
  • Plan net
    purpose: High-level state transition model conditioned on latent behaviors, trained on both source and target data.
    Internal component; no external validation.
  • Intrinsic reward r_bar_t = -||s_t - s_bar_t||^2
    purpose: Encourages trunk rollouts to match plan rollouts, transferring video-derived behaviors to the policy.
    New reward term; only evaluated in the paper's ablations.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Video-Enhanced Offline Reinforcement Learning: A Model-Based Approach." pith.science (2026). https://pith.science/paper/IFFSEQZU

@misc{pith2026250506482,
  author       = {Pith},
  title        = {Pith review of: Video-Enhanced Offline Reinforcement Learning: A Model-Based Approach},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/IFFSEQZU}},
  note         = {Machine review of arXiv:2505.06482}
}
read the original abstract

Offline reinforcement learning (RL) enables policy optimization using static datasets, avoiding the risks and costs of extensive real-world exploration. However, it struggles with suboptimal offline behaviors and inaccurate value estimation due to the lack of environmental interaction. We present Video-Enhanced Offline RL (VeoRL), a model-based method that constructs an interactive world model from diverse, unlabeled video data readily available online. Leveraging model-based behavior guidance, our approach transfers commonsense knowledge of control policy and physical dynamics from natural videos to the RL agent within the target domain. VeoRL achieves substantial performance gains (over 100% in some cases) across visual control tasks in robotic manipulation, autonomous driving, and open-world video games.

Figures

Figures reproduced from arXiv: 2505.06482 by the authors.

Figure 1
Figure 1. Overview of the training setup of VeoRL that leads to improved offline RL performance. a, We extract latent behavior abstractions from task-agnostic, unannotated natural video data to enrich the world model’s commonsense understanding of the physical world. By interacting with this world model, the agent performs policy optimization guided explicitly by the latent policies learned from the natural videos. b, Overall… view at source ↗
Figure 2
Figure 2. Model architecture. a, We construct a discrete, high-level latent action space by training the BAN, enabling forward dynamics modeling independent of real actions. b, The visualization of model-based actor-critic learning at a single rollout step. We leverage FBC to replay the video-informed latent behaviors, serving as the inputs of the actor and critic for producing goal-conditioned policies and value estimations,… view at source ↗
Figure 4
Figure 4. Experiments of autonomous driving. a, Showcases of the source NuScenes and target CARLA datasets. b, Performance comparison on CARLA, measured by averaged episode returns. VPT (Baker et al., 2022) is particularly designed for Minecraft tasks, so we only use it as the baseline model on the MineDojo environment. Further details of the com￾pared models can be found in Appendix Section D. 4.1. Main Results Meta-World ro… view at source ↗
Figures from the paper (7 more)
Figure 3
Figure 3. Figure 3: Performance on Meta-World robotic manipulation tasks in episode return. Error bars indicate standard deviation across the 50 evaluation episodes, with 3 random training seeds. 4. Experiments In this section, we present (i) quantitative comparisons with existing RL meth…
Figure 5
Figure 5. Figure 5: Experiments of the MineDojo 3D navigation and control tasks. a, Showcases of source online videos and target offline datasets. b, Performance comparison in success rate. Meta-World (Soccer) CARLA (Night) MineDojo (Cobblestone) [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 6
Figure 6. Figure 6: Performance of offline-to-online finetuning on novel tasks. By conducting offline pretraining, VeoRL demonstrates improved training efficiency and final performance when adapting to unseen, more challenging visual control tasks. Notably, we train the DreamerV2 model un…
Figure 7
Figure 7. Figure 7: Ablation studies of VeoRL. We show the impact of latent behavior guidance (yellow) and the intrinsic reward (green). We also compare VeoRL with a baseline model that does not use any source video data throughout the training process (blue) [PITH_FULL_IMAGE:figures/ful…
Figure 8
Figure 8. Figure 8: Correspondence between latent behaviors and real actions in Meta-World. During model-based state rollouts, starting from the same state st of the target domain, VeoRL simultaneously generates real action trajectories at:t+H and latent behaviors a¯t:t+H. We consider tra…
Figure 9
Figure 9. Figure 9: provides the results of varying the number of discrete latent behaviors in the Meta-World (Handle Press) and CARLA benchmarks. We observe that setting num = 50 consistently yields the best performance across all tested environments, striking a good balance between the …
Figure 10
Figure 10. Figure 10: , incorporating MMD significantly aligns the feature distributions between the source and target domains. This alignment correlates with policy generalization [PITH_FULL_IMAGE:figures/full_fig_p017_10.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

23 extracted references · 9 canonical work pages

  1. [1]

    Each dataset consists of 200 trajectories, each with 500 time steps

    We collect six offline datasets from the tasks button press, drawer open, handle pull, handle press, plate slide, and coffee push. Each dataset consists of 200 trajectories, each with 500 time steps. • CARLA (Dosovitskiy et al., 2017): CARLA provides realistic visual observations for autonomous driving research, including varied weather conditions, road l...

  2. [2]

    C. Benchmark Details We evaluate the performance of VeoRL in the following three visual RL environments: • Meta-World (Yu et al., 2019): The Meta-World benchmark simulates 50 manipulation tasks with complex visual dynamics, all executed by the same robotic arm. These tasks involve a variety of actions such as reaching, pushing, and grasping, implemented w...

  3. [4]

    D4rl: Datasets for deep data-driven reinforcement learning

    Fu, J., Kumar, A., Nachum, O., Tucker, G., and Levine, S. D4rl: Datasets for deep data-driven reinforcement learning. arXiv preprint arXiv:2004.07219,

  4. [6]

    Mastering diverse domains through world models

    Hafner, D., Pasukonis, J., Ba, J., and Lillicrap, T. Mastering diverse domains through world models. arXiv preprint arXiv:2301.04104,

  5. [7]

    Handle Press w/ MMD loss w/o MMD loss DreamerV2 Episode return 2651± 620 1961 ± 585 1202 ± 422 Success rate 0.60± 0.12 0.45 ± 0.15 0.33 ± 0.11 W/ MMD loss W/o MMD loss Figure

    The ablation study on the MMD loss in the Meta-World environment. Handle Press w/ MMD loss w/o MMD loss DreamerV2 Episode return 2651± 620 1961 ± 585 1202 ± 422 Success rate 0.60± 0.12 0.45 ± 0.15 0.33 ± 0.11 W/ MMD loss W/o MMD loss Figure

  6. [8]

    Offline rein- forcement learning: Tutorial, review, and perspectives on open problems

    Levine, S., Kumar, A., Tucker, G., and Fu, J. Offline rein- forcement learning: Tutorial, review, and perspectives on open problems. arXiv preprint arXiv:2005.01643,

  7. [11]

    Proximal policy optimization algorithms

    Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347,

  8. [12]

    Offline reinforcement learning for visual navigation

    Shah, D., Bhorkar, A., Leen, H., Kostrikov, I., Rhinehart, N., and Levine, S. Offline reinforcement learning for visual navigation. arXiv preprint arXiv:2212.08244,

Show all 23 references
  1. [13]

    Model-based visual planning with self-supervised functional distances

    Tian, S., Nair, S., Ebert, F., Dasari, S., Eysenbach, B., Finn, C., and Levine, S. Model-based visual planning with self-supervised functional distances. arXiv preprint arXiv:2012.15373,

  2. [15]

    Behavior regu- larized offline reinforcement learning

    Wu, Y ., Tucker, G., and Nachum, O. Behavior regu- larized offline reinforcement learning. arXiv preprint arXiv:1911.11361,

  3. [16]

    Offline visual representation learning for embodied nav- igation

    Yadav, K., Ramrakhya, R., Majumdar, A., Berges, V .-P., Kuhar, S., Batra, D., Baevski, A., and Maksymets, O. Offline visual representation learning for embodied nav- igation. In Workshop on Reincarnating Reinforcement Learning at ICLR 2023,

  4. [17]

    Playable game generation

    Yang, M., Li, J., Fang, Z., Chen, S., Yu, Y ., Fu, Q., Yang, W., and Ye, D. Playable game generation. arXiv preprint arXiv:2412.00887, 2024a. Yang, R., Zhong, H., Xu, J., Zhang, A., Zhang, C., Han, L., and Zhang, T. Towards robust offline reinforcement learning under diverse d...

  5. [20]

    An overview of layers and hyperparameters used in VeoRL in the three environments. Item Meta-World CARLA MineDojo World Model Image encoder Conv3-32 Conv3-32 Conv3-96 GRU hidden size 200 200 4096 RSSM number of units 200 200 1024 Stochastic latent dimension 50 50 32 Discrete l...

  6. [21]

    As the number of source domain videos increases, the model’s performance improves accordingly

    The ablation study of the quality of source videos on Meta-World (Handle Press). As the number of source domain videos increases, the model’s performance improves accordingly. Handle Press All videos 1/2 videos 1/4 videos DreamerV2 Episode return 2651± 620 2477 ± 441 1859 ± 42...

  7. [22]

    • LOMPO (Rafailov et al., 2021): A model-based offline visual RL method that addresses model uncertainty in the latent space while incorporating explicit reward estimation

    for offline policy learning. • LOMPO (Rafailov et al., 2021): A model-based offline visual RL method that addresses model uncertainty in the latent space while incorporating explicit reward estimation. • VPT (Baker et al., 2022): A foundational model for Minecraft trained usin...

  8. [2006]

    H., V ora, S., Liong, V

    Caesar, H., Bankiti, V ., Lang, A. H., V ora, S., Liong, V . E., Xu, Q., Krishnan, A., Pan, Y ., Baldan, G., and Beijbom, O. nuscenes: A multimodal dataset for autonomous driving. arXiv preprint arXiv:1903.11027,

  9. [2018]

    Dif- fusion models are real-time game engines

    Valevski, D., Leviathan, Y ., Arar, M., and Fruchter, S. Dif- fusion models are real-time game engines. arXiv preprint arXiv:2408.14837,

  10. [2019]

    Learning from sparse offline datasets via conservative density estimation

    Cen, Z., Liu, Z., Wang, Z., Yao, Y ., Lam, H., and Zhao, D. Learning from sparse offline datasets via conservative density estimation. arXiv preprint arXiv:2401.08819 ,

  11. [2020]

    Crafting papers on machine learning

    Langley, P. Crafting papers on machine learning. In Langley, P. (ed.),Proceedings of the 17th International Conference on Machine Learning (ICML 2000), pp. 1207–1216, Stan- ford, CA,

  12. [2021]

    Off-policy deep reinforcement learning without exploration

    Fujimoto, S., Meger, D., and Precup, D. Off-policy deep reinforcement learning without exploration. In ICML, pp. 2052–2062,

  13. [2022]

    Estimating or propagating gradients through stochastic neurons for con- ditional computation

    Bengio, Y ., L´eonard, N., and Courville, A. Estimating or propagating gradients through stochastic neurons for con- ditional computation. arXiv preprint arXiv:1308.3432,

  14. [2023]

    R3m: A universal visual representation for robot manipulation

    Nair, S., Rajeswaran, A., Kumar, V ., Finn, C., and Gupta, A. R3m: A universal visual representation for robot manipulation. arXiv preprint arXiv:2203.12601,

  15. [2024]

    B., Kumar, A., Zhang, G., and Levine, S

    Peng, X. B., Kumar, A., Zhang, G., and Levine, S. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning. arXiv preprint arXiv:1910.00177,

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.