REVIEW 5 major objections 6 minor 5 cited by
EmbodieDreamer: Advancing Real2Sim2Real Transfer for Policy Training via Embodied World Modeling
T0 review · 5 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Training robot policies inside photorealistic simulated video raises real-world success by 29 percent.
desk verdict Promising integration of system ID and video diffusion for sim2real, but the 29.17% RL gain lacks a plain-simulator control so it cannot be attributed to photorealism. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The framework rests on three connected mechanisms. PhysAligner is a differentiable system identification pipeline: generate simulation rollouts under random physics parameters, fit an MLP surrogate to predict next states from parameters, actions, and states, then backpropagate through the surrogate to optimize friction, stiffness, and damping against real trajectories, avoiding the cost of simulated annealing. VisAligner is a latent video diffusion model built on Stable Video Diffusion that concatenates a real background reference image with simulated robot frames and a foreground object mask, denoising them into photorealistic videos that track the simulation state. For reinforcement learning, a trajectory preference loss adapted from GRAPE scores each rollout by the terminal Euclidean distance between the end-effector and the target, selects the top and bottom 25 trajectories as positive and negative pairs, and fine-tunes the ACT policy with a KL-regularized objective against the supervised reference policy.
What would settle it
Run the same preference-based RL pipeline as in Section 4.3 but feed unrendered simulator frames, rather than VisAligner videos, to the policy, and evaluate on the same four real tasks; if average success stays near 0.77, the photorealistic world model is not what drives the improvement.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that a combined physical and visual calibration makes a simulator a viable training ground for real-world manipulation policies. PhysAligner trains an MLP surrogate to imitate the simulator's state transitions across randomly sampled friction, stiffness, and damping values, then refines those parameters by gradient descent against real end-effector trajectories, producing a differentiable, fast approximation of the simulator's non-smooth dynamics. VisAligner takes a real reference image for the static background, a simulated rendering of the robot, and a segmentation mask of the foreground object, and generates photorealistic videos aligned with simulation state. A single-view ACT policy fine-tuned by trajectory preference optimization in this environment reaches a 0.77 average real-world success rate across four tasks, up from 0.49 for the supervised baseline, and the same generated episodes improve imitation learning success on altered backgrounds and object colors.
Load-bearing premise
The load-bearing premise is that the preference labels for reinforcement learning are trustworthy: the paper ranks trajectories by the simulated distance between the end-effector and the target at the final step, and if that distance does not track whether the robot actually grasps and places the object in the real world, the policy would be trained on misaligned preferences and the reported 29.17% improvement would not follow.
Editorial extensions
If this is right
- If the reported 29.17% improvement holds, a single-view policy trained with RL in the generated environment outperforms the three-view supervised baseline, reducing camera requirements.
- PhysAligner's roughly tenfold speedup makes per-robot calibration with 50 sampled parameter sets practical, replacing slow simulated annealing for system identification.
- VisAligner's disentangled robot, foreground, and background conditioning supports generating diverse new scenes from a single real episode without physically moving objects.
- Imitation learning with generated episodes improves success on altered backgrounds and object colors for both ACT and π0 policies, compared with training only on real data.
Reading between the lines
- The authors do not compare the RL result against the same preference-based RL loop run on ordinary, unrendered simulation images; such an ablation would reveal how much of the 0.77 success rate comes from the photorealistic renderer rather than the physics calibration and preference optimization.
- Because the terminal end-effector distance is used as the reward proxy, a simple check would be to correlate that simulated distance with real grasp and placement outcomes across the four tasks; the paper reports no such validation.
- A natural stress test is misalignment between the calibrated camera and URDF overlay and the real robot pose, since VisAligner's video quality presumably depends on that registration; the paper does not measure how policy performance degrades as registration error grows.
- The roughly two minutes per generated sequence makes closed-loop, real-time world-model interaction impractical at policy frequency; faster sampling or distillation would be needed before the video generator itself could act as a reflexive training environment.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes EmbodieDreamer, a Real2Sim2Real framework composed of two modules: PhysAligner, a differentiable surrogate-based optimizer for simulator physical parameters (friction, stiffness, damping), and VisAligner, a conditional video diffusion model that renders low-fidelity simulated trajectories into photorealistic videos. The authors claim that PhysAligner reduces physical parameter estimation error by 3.74% over a simulated annealing baseline while achieving a 10x speedup, that VisAligner improves video generation metrics (FVD 176 vs. 422), and that reinforcement learning (RL) training in the photorealistic environment improves average real-world task success from 0.49 to 0.77, a 29.17% gain (Section 4.3, Table 3). The paper also presents imitation-learning (IL) data-augmentation experiments using generated videos.
Significance. If fully supported, the framework would be a valuable contribution to scalable robot policy learning, addressing both the physics and appearance components of the sim-to-real gap. The paper's strengths include a clear problem decomposition, a sensible video-diffusion design with disentangled foreground/background/robot conditioning, and promising IL results in some changed-scene settings. However, the headline RL result is currently not attributable to VisAligner because of confounding variables, and the PhysAligner accuracy metric is a training-fit error. These issues are fixable with additional experiments, so the paper's potential is visible but not yet established.
major comments (5)
- [Section 4.3, Table 3] The reported 29.17% average improvement is computed by comparing SFT with one view (0.49) against RL with EmbodieDreamer (0.77). This comparison bundles three simultaneous changes relative to the SFT baseline: (i) additional TPO/RL fine-tuning, (ii) the simulator's dynamics, which may be PhysAligner-aligned, and (iii) VisAligner's photorealistic rendering. Since no run trains the same ACT+TPO loop on unrendered (raw) simulator observations, the gain cannot be attributed to VisAligner or to photorealism, which is the component highlighted in the title and abstract. Please add a control condition that trains the same policy with the same preference-based RL loop using raw simulator renderings, and report all three conditions.
- [Section 4.1, Table 1, Eq. (4)] The 'trajectory error' reported for PhysAligner is the loss Lpara of Eq. (4), minimized on the same 20 RT-1 episodes used for parameter fitting. Reporting this training-fit MSE as the accuracy metric is circular: the 3.74% improvement over SimplerEnv reflects how well the optimized parameters fit the training trajectories, not how accurately they predict held-out real-world trajectories. Please evaluate the optimized parameters on held-out episodes (or report cross-validation) and distinguish fit error from generalization error.
- [Section 4.3, reward definition] The preference-based RL reward is defined as the Euclidean distance between the end-effector and the target position at the terminal state of each simulated trajectory. No evidence is provided that this proxy correlates with real-world grasp or placement success; if the proxy is misaligned, TPO may optimize a surrogate objective that does not correspond to task completion. Please provide a correlation analysis between the simulated terminal distance and real success labels, or add an ablation using an alternative reward (e.g., a task-specific success detector).
- [Table 3] Success rates in Table 3 are reported as point estimates without the number of trials per task, standard errors, or confidence intervals. Without trial counts, the reader cannot assess whether the 0.49 vs. 0.77 difference is statistically meaningful for each task. Please report the number of trials per cell and, ideally, confidence intervals or raw trial counts.
- [Appendix 2, Eq. (15)] The trajectory log-likelihood for the discrete-action ACT policy is asserted in Eq. (15) as a squared-prediction-error pseudo-likelihood, without derivation or empirical validation. Since the TPO loss of Eq. (16) is built on this quantity, the preference optimization signal depends on this assumption. Please either justify the Gaussian pseudo-likelihood for ACT actions or provide an ablation comparing this scoring to an alternative (e.g., a proper softmax-likelihood over action chunks).
minor comments (6)
- [Figure 1] The figure caption contains a garbled string of characters ('图⼤字⼤3个关系GRAPE论⽂颜⾊') that appears to be corrupted text; please replace it with a proper English caption.
- [Table 3] The table note lists settings '(1) trained from scratch with supervised fine-tuning (SFT), (2) without pre-training, and (3) with reinforcement learning (RL) training' but the rows only distinguish SFT with three views, SFT with one view, and RL with EmbodieDreamer; please align the note with the actual rows.
- [Section 4.4] The text says 'We conduct 30 test trials for each task setting' but Table 4 reports success rates that appear to be averages across 50 or 20 episodes for different columns; please clarify the exact number of trials per reported cell.
- [Section 4.2] The description of the data split (4,762 training and 100 test samples) does not state whether the split is at the episode level or the frame level; please clarify to avoid potential temporal leakage.
- [Appendix 1, Eqs. (8)-(10)] The appendix redefines (f,p,d) inconsistently with Section 3.2: in Section 3.2 these symbols denote friction, stiffness, and damping coefficients, while in Eq. (8) f is the input visual observation, p the ground-truth end-effector pose sequence, and d the diffusion model used for trajectory generation. This notation conflict should be resolved, for example by using different symbols for the physical parameters.
- [References] Reference [65] duplicates reference [27] (both are the ACT paper); please consolidate or cite the appropriate version once.
Circularity Check
PhysAligner's headline 3.74% error reduction is the in-sample value of the same MSE minimized in Eq. (4); the RL and video results are external and not circular.
-
fitted input called prediction
[Section 3.2, Eq. (4); Section 4.1, Table 1]
"Lpara = 1/T sum_{t=1}^T ||P*_t - S_t||^2 ... This iterative process continues until the simulated output aligns closely with the observed trajectories ... Performance is evaluated using the mean squared error (MSE) between the predicted and ground-truth end-effector trajectories, and we additionally report the total computation time for data preparation and parameter optimization."
Eq. (4) is the training objective for the physical parameters (f,p,d), and Sec. 4.1 states that the comparison in Table 1 is the MSE between predicted and ground-truth end-effector trajectories on the same 20 RT-1 episodes used for fitting, with no held-out split or cross-validation described. The reported 3.74% improvement (0.2245 versus 0.2161) is therefore the difference between the in-sample values of the objective that both methods minimize, not an out-of-sample estimation-error reduction. The fitted low-loss parameters are reported as if they had generalized 'error' rather than as fit quality on the training episodes.
full rationale
The central real-robot claim in Table 3 (single-view SFT 0.49 to RL with EmbodieDreamer 0.77, a 29.17% improvement) is not circular: success is measured on the physical robot and is not used to fit PhysAligner or VisAligner. The video-generation metrics (FVD, PSNR, SSIM, LPIPS) are likewise external to the training loss in Eq. (7). The one place where a headline number reduces to its own training objective is PhysAligner: Table 1's trajectory error is, on the paper's own description, the MSE between predicted and ground-truth trajectories, while Eq. (4) is exactly the MSE minimized on the same 20 RT-1 episodes, with no described held-out evaluation. Thus the 3.74% improvement is an in-sample fit comparison (gradient-based optimization reaching a lower value of the minimized loss than simulated annealing), not a validated estimation-error prediction. This is a partial circularity affecting the physics headline. The appendix's redefinition of (f,p,d) in Eqs. (8)-(10) is another correctness/documentation issue but not a circular step. Self-citations appear only in related-work examples and are not load-bearing.
Assumptions & free parameters
free parameters (5)
- stiffness =
not reported
- damping =
not reported
- friction =
not reported
- M, number of preferred and rejected trajectories =
25
- beta, preference regularization coefficient =
not reported
assumptions (5)
- domain assumption The simulator with optimized stiffness, damping, and friction is an adequate model of the real robot's dynamics for policy transfer.
- domain assumption Replaying URDF joint trajectories with a manually calibrated virtual camera yields frames aligned with the real camera view.
- domain assumption Terminal end-effector distance to the target in simulation is a valid reward proxy for real task success.
- ad hoc to paper A Gaussian pseudo-likelihood over action prediction errors (Eq. 15) is a valid trajectory log-likelihood for ACT.
- domain assumption The latent video diffusion model generalizes to novel simulation frames and maintains temporal consistency.
Cite this review
Pith. "Pith review of EmbodieDreamer: Advancing Real2Sim2Real Transfer for Policy Training via Embodied World Modeling." pith.science (2026). https://pith.science/paper/Q3TUDAGV
@misc{pith2026250705198,
author = {Pith},
title = {Pith review of: EmbodieDreamer: Advancing Real2Sim2Real Transfer for Policy Training via Embodied World Modeling},
year = {2026},
howpublished = {\url{https://pith.science/paper/Q3TUDAGV}},
note = {Machine review of arXiv:2507.05198}
}
read the original abstract
The rapid advancement of Embodied AI has led to an increasing demand for large-scale, high-quality real-world data. However, collecting such embodied data remains costly and inefficient. As a result, simulation environments have become a crucial surrogate for training robot policies. Yet, the significant Real2Sim2Real gap remains a critical bottleneck, particularly in terms of physical dynamics and visual appearance. To address this challenge, we propose EmbodieDreamer, a novel framework that reduces the Real2Sim2Real gap from both the physics and appearance perspectives. Specifically, we propose PhysAligner, a differentiable physics module designed to reduce the Real2Sim physical gap. It jointly optimizes robot-specific parameters such as control gains and friction coefficients to better align simulated dynamics with real-world observations. In addition, we introduce VisAligner, which incorporates a conditional video diffusion model to bridge the Sim2Real appearance gap by translating low-fidelity simulated renderings into photorealistic videos conditioned on simulation states, enabling high-fidelity visual transfer. Extensive experiments validate the effectiveness of EmbodieDreamer. The proposed PhysAligner reduces physical parameter estimation error by 3.74% compared to simulated annealing methods while improving optimization speed by 89.91\%. Moreover, training robot policies in the generated photorealistic environment leads to a 29.17% improvement in the average task success rate across real-world tasks after reinforcement learning. Code, model and data will be publicly available.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 5 Pith papers
-
HALO-WA: Hybrid-Attention Latent-Guided Online Reinforcement Learning for World-Action Models
A hybrid-attention latent-guided online RL adapter lifts frozen world-action models from 26.4% to 87.1% average success on four real precision manipulation tasks in 45–75 minutes each.
-
GigaWorld-1: A Roadmap to Build World Models for Robot Policy Evaluation
Long-horizon action-faithful consistency, not short-term visual realism, dominates world-model reliability for robot policy evaluation; GigaWorld-1 implements that roadmap and gains 14.9% on evaluator-alignment metrics.
-
A Comprehensive Survey on World Models for Embodied AI
A unified three-axis taxonomy — functionality, temporal modeling, spatial representation — organizes the world-model literature for embodied AI.
-
GigaWorld-Policy-0.5: A Faster and Stronger WAM Empowered by AutoResearch
GigaWorld-Policy-0.5 uses a Mixture-of-Transformers action-expert split and mixed world-model pretraining to reach 85 ms action-only inference with claimed success-rate gains.
-
From World Models to World Action Models: A Concise Tutorial for Robotics
World models are action-conditioned predictors of task-relevant futures; world action models couple those futures to robot actions via four paradigms: imagine-then-execute, feature-conditioned, joint, and auxiliary pr...
Reference graph
Works this paper leans on
-
[1]
Mujoco: A physics engine for model-based control
Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In 2012 IEEE/RSJ International Conference on Intelligent Robots and Systems, pages 5026–5033. IEEE, 2012. 1, 3
work page 2012
-
[2]
Stephen James, Zicong Ma, David Rovick Arrojo, and Andrew J. Davison. Rlbench: The robot learning benchmark & learning environment. IEEE Robotics and Automation Letters, 2020. 1, 3
work page 2020
-
[3]
Fanbo Xiang, Yuzhe Qin, Kaichun Mo, Yikuan Xia, Hao Zhu, Fangchen Liu, Minghua Liu, Hanxiao Jiang, Yifu Yuan, He Wang, Li Yi, Angel X. Chang, Leonidas J. Guibas, and Hao Su. SAPIEN: A simulated part-based interactive environment. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2020. 1, 3
work page 2020
-
[4]
Evaluating real-world robot manipulation policies in simulation
Xuanlin Li, Kyle Hsu, Jiayuan Gu, Karl Pertsch, Oier Mees, Homer Rich Walke, Chuyuan Fu, Ishikaa Lunawat, Isabel Sieh, Sean Kirmani, Sergey Levine, Jiajun Wu, Chelsea Finn, Hao Su, Quan Vuong, and Ted Xiao. Evaluating real-world robot manipulation policies in simulation. arXiv preprint arXiv:2405.05941, 2024. 1, 2, 3, 5, 7
arXiv 2024
-
[5]
Genesis: A universal and generative physics engine for robotics and beyond, December 2024
Genesis Authors. Genesis: A universal and generative physics engine for robotics and beyond, December 2024. 1, 3
work page 2024
-
[6]
Shiduo Zhang, Zhe Xu, Peiju Liu, Xiaopeng Yu, Yuan Li, Qinghui Gao, Zhaoye Fei, Zhangyue Yin, Zuxuan Wu, Yu-Gang Jiang, and Xipeng Qiu. Vlabench: A large-scale benchmark for language-conditioned robotics manipulation with long-horizon reasoning tasks, 2024. 1, 3
work page 2024
-
[7]
Haoran Geng, Feishi Wang, Songlin Wei, Yuyang Li, Bangjun Wang, Boshi An, Charlie Tianyue Cheng, Haozhe Lou, Peihao Li, Yen-Jen Wang, Yutong Liang, Dylan Goetting, Chaoyi Xu, Haozhe Chen, Yuxi Qian, Yiran Geng, Jiageng Mao, Weikang Wan, Mingtong Zhang, Jiangran Lyu, Siheng Zhao, Jiazhao Zhang, Jialiang Zhang, Chengyang Zhao, Haoran Lu, Yufei Ding, Ran Gon...
work page 2025
-
[8]
Robotwin: Dual-arm robot benchmark with generative digital twins
Yao Mu, Tianxing Chen, Zanxin Chen, Shijia Peng, Zhiqian Lan, Zeyu Gao, Zhixuan Liang, Qiaojun Yu, Yude Zou, Mingkun Xu, et al. Robotwin: Dual-arm robot benchmark with generative digital twins. arXiv preprint arXiv:2504.13059, 2025. 1, 4
arXiv 2025
Show all 67 references
-
[9]
Stable video diffusion: Scaling latent video diffusion models to large datasets
Andreas Blattmann, Tim Dockhorn, Sumith Kulal, Daniel Mendelevitch, Maciej Kilian, Do- minik Lorenz, Yam Levi, Zion English, Vikram V oleti, Adam Letts, et al. Stable video diffusion: Scaling latent video diffusion models to large datasets. arXiv preprint arXiv:2311.15127, 202...
2023 arXiv
-
[10]
Cogvideo: Large-scale pretraining for text-to-video generation via transformers
Wenyi Hong, Ming Ding, Wendi Zheng, Xinghan Liu, and Jie Tang. Cogvideo: Large-scale pretraining for text-to-video generation via transformers. arXiv preprint arXiv:2205.15868,
-
[11]
Human- dreamer: Generating controllable human-motion videos via decoupled generation
Boyuan Wang, Xiaofeng Wang, Chaojun Ni, Guosheng Zhao, Zhiqin Yang, Zheng Zhu, Muyang Zhang, Yukun Zhou, Xinze Chen, Guan Huang, Lihong Liu, and Xingang Wang. Human- dreamer: Generating controllable human-motion videos via decoupled generation. arXiv preprint arXiv:2503.24026, 2025. 2
2025 arXiv
-
[12]
Humandreamer-x: Photorealistic single-image human avatars reconstruction via gaussian restoration
Boyuan Wang, Runqi Ouyang, Xiaofeng Wang, Zheng Zhu, Guosheng Zhao, Chaojun Ni, Guan Huang, Lihong Liu, and Xingang Wang. Humandreamer-x: Photorealistic single-image human avatars reconstruction via gaussian restoration. arXiv preprint arXiv:2504.03536, 2025. 2, 4
2025
-
[13]
Rebot: Scaling robot learning with real-to-sim-to-real robotic video synthesis, 2025
Yu Fang, Yue Yang, Xinghao Zhu, Kaiyuan Zheng, Gedas Bertasius, Daniel Szafir, and Mingyu Ding. Rebot: Scaling robot learning with real-to-sim-to-real robotic video synthesis, 2025. 2, 4
2025
-
[14]
Roboengine: Plug-and-play robot data augmentation with semantic robot segmentation and background generation
Chengbo Yuan, Suraj Joshi, Shaoting Zhu, Hang Su, Hang Zhao, and Yang Gao. Roboengine: Plug-and-play robot data augmentation with semantic robot segmentation and background generation. arXiv preprint arXiv:2503.18738, 2025. 2 14
2025 arXiv
-
[15]
Irasim: Learning interactive real-robot action simulators
Fangqi Zhu, Hongtao Wu, Song Guo, Yuxiao Liu, Chilam Cheang, and Tao Kong. Irasim: Learning interactive real-robot action simulators. arXiv:2406.12802, 2024. 2, 4
2024 arXiv
-
[16]
Dexterous hand manipulation via efficient imitation-bootstrapped online reinforcement learning
Dongchi Huang, Tianle Zhang, Yihang Li, Ling Zhao, Jiayi Li, Zhirui Fang, Chunhe Xia, Lusong Li, and Xiaodong He. Dexterous hand manipulation via efficient imitation-bootstrapped online reinforcement learning. arXiv preprint arXiv:2503.04014, 2025. 2
2025
-
[17]
A survey of imitation learning: Algorithms, recent developments, and challenges
Maryam Zare, Parham M Kebria, Abbas Khosravi, and Saeid Nahavandi. A survey of imitation learning: Algorithms, recent developments, and challenges. IEEE Transactions on Cybernetics,
-
[18]
Deep reinforcement learning for robotics: A survey of real-world successes
Chen Tang, Ben Abbatematteo, Jiaheng Hu, Rohan Chandra, Roberto Martín-Martín, and Peter Stone. Deep reinforcement learning for robotics: A survey of real-world successes. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 39, pages 28694–28698,
-
[19]
Sim-to-real rein- forcement learning for vision-based dexterous manipulation on humanoids
Toru Lin, Kartik Sachdev, Linxi Fan, Jitendra Malik, and Yuke Zhu. Sim-to-real rein- forcement learning for vision-based dexterous manipulation on humanoids. arXiv preprint arXiv:2502.20396, 2025. 2
2025 arXiv
-
[20]
π0: A vision-language-action flow model for general robot control
Kevin Black, Noah Brown, Danny Driess, Adnan Esmail, Michael Equi, Chelsea Finn, Niccolo Fusai, Lachy Groom, Karol Hausman, Brian Ichter, Szymon Jakubczak, Tim Jones, Liyiming Ke, Sergey Levine, Adrian Li-Bell, Mohith Mothukuri, Suraj Nair, Karl Pertsch, Lucy Xiaoyang Shi, Jam...
-
[21]
Physical Intelligence, Kevin Black, Noah Brown, James Darpinian, Karan Dhabalia, Danny Driess, Adnan Esmail, Michael Equi, Chelsea Finn, Niccolo Fusai, Manuel Y . Galliker, Dibya Ghosh, Lachy Groom, Karol Hausman, Brian Ichter, Szymon Jakubczak, Tim Jones, Liyiming Ke, Devin L...
2025
-
[22]
Octo: An open-source generalist robot policy
Octo Model Team, Dibya Ghosh, Homer Walke, Karl Pertsch, Kevin Black, Oier Mees, Sudeep Dasari, Joey Hejna, Tobias Kreiman, Charles Xu, et al. Octo: An open-source generalist robot policy. arXiv preprint arXiv:2405.12213, 2024. 3
2024 arXiv
-
[23]
Motion planning diffusion: Learning and planning of robot motions with diffusion models
Joao Carvalho, An T Le, Mark Baierl, Dorothea Koert, and Jan Peters. Motion planning diffusion: Learning and planning of robot motions with diffusion models. In 2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pages 1916–1923. IEEE,
2023
-
[24]
3d diffusion policy: Generalizable visuomotor policy learning via simple 3d representations
Yanjie Ze, Gu Zhang, Kangning Zhang, Chenyuan Hu, Muhan Wang, and Huazhe Xu. 3d diffusion policy: Generalizable visuomotor policy learning via simple 3d representations. arXiv preprint arXiv:2403.03954, 2024. 3
2024 arXiv
-
[25]
Direct preference optimization: Your language model is secretly a reward model
Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems, 36:53728–53741, 2023. 3
2023
-
[26]
Grape: Generalizing robot policy via preference alignment, 2024
Zijian Zhang, Kaiyuan Zheng, Zhaorun Chen, Joel Jang, Yi Li, Chaoqi Wang, Mingyu Ding, Dieter Fox, and Huaxiu Yao. Grape: Generalizing robot policy via preference alignment, 2024. 3, 9, 12
2024
-
[28]
Rt-2: Vision-language- action models transfer web knowledge to robotic control
Anthony Brohan, Noah Brown, Justice Carbajal, Yevgen Chebotar, Xi Chen, Krzysztof Choro- manski, Tianli Ding, Danny Driess, Avinava Dubey, Chelsea Finn, et al. Rt-2: Vision-language- action models transfer web knowledge to robotic control. arXiv preprint arXiv:2307.15818,
-
[29]
Diffusion policy: Visuomotor policy learning via action diffusion
Cheng Chi, Zhenjia Xu, Siyuan Feng, Eric Cousineau, Yilun Du, Benjamin Burchfiel, Russ Tedrake, and Shuran Song. Diffusion policy: Visuomotor policy learning via action diffusion. The International Journal of Robotics Research, page 02783649241273668, 2023. 3
2023
-
[30]
Rdt-1b: a diffusion foundation model for bimanual manipulation
Songming Liu, Lingxuan Wu, Bangguo Li, Hengkai Tan, Huayu Chen, Zhengyi Wang, Ke Xu, Hang Su, and Jun Zhu. Rdt-1b: a diffusion foundation model for bimanual manipulation. arXiv preprint arXiv:2410.07864, 2024. 3
2024 arXiv
-
[31]
Reactive diffusion policy: Slow-fast visual-tactile policy learning for contact-rich manipulation
Han Xue, Jieji Ren, Wendi Chen, Gu Zhang, Yuan Fang, Guoying Gu, Huazhe Xu, and Cewu Lu. Reactive diffusion policy: Slow-fast visual-tactile policy learning for contact-rich manipulation. arXiv preprint arXiv:2503.02881, 2025. 3
2025 arXiv
-
[32]
Openvla: An open-source vision-language-action model
Moo Jin Kim, Karl Pertsch, Siddharth Karamcheti, Ted Xiao, Ashwin Balakrishna, Suraj Nair, Rafael Rafailov, Ethan Foster, Grace Lam, Pannag Sanketi, Quan Vuong, Thomas Kollar, Benjamin Burchfiel, Russ Tedrake, Dorsa Sadigh, Sergey Levine, Percy Liang, and Chelsea Finn. Openvla...
-
[33]
Octo: An open-source generalist robot policy
Octo Model Team, Dibya Ghosh, Homer Walke, Karl Pertsch, Kevin Black, Oier Mees, Sudeep Dasari, Joey Hejna, Charles Xu, Jianlan Luo, Tobias Kreiman, You Liang Tan, Pannag Sanketi, Quan Vuong, Ted Xiao, Dorsa Sadigh, Chelsea Finn, and Sergey Levine. Octo: An open-source general...
-
[34]
Dexgraspvla: A vision-language-action framework towards general dexterous grasping
Yifan Zhong, Xuchuan Huang, Ruochong Li, Ceyao Zhang, Yitao Liang, Yaodong Yang, and Yuanpei Chen. Dexgraspvla: A vision-language-action framework towards general dexterous grasping. arXiv preprint arXiv:2502.20900, 2025. 3
2025
-
[35]
Cot-vla: Visual chain-of-thought reasoning for vision-language-action models
Qingqing Zhao, Yao Lu, Moo Jin Kim, Zipeng Fu, Zhuoyang Zhang, Yecheng Wu, Zhaoshuo Li, Qianli Ma, Song Han, Chelsea Finn, et al. Cot-vla: Visual chain-of-thought reasoning for vision-language-action models. arXiv preprint arXiv:2503.22020, 2025. 3
2025 arXiv
-
[36]
Bridgedata v2: A dataset for robot learning at scale
Homer Walke, Kevin Black, Abraham Lee, Moo Jin Kim, Max Du, Chongyi Zheng, Tony Zhao, Philippe Hansen-Estruch, Quan Vuong, Andre He, Vivek Myers, Kuan Fang, Chelsea Finn, and Sergey Levine. Bridgedata v2: A dataset for robot learning at scale. In Conference on Robot Learning (...
2023
-
[37]
Rt-1: Robotics transformer for real-world control at scale
Anthony Brohan, Noah Brown, Justice Carbajal, Yevgen Chebotar, Joseph Dabis, Chelsea Finn, Keerthana Gopalakrishnan, Karol Hausman, Alex Herzog, Jasmine Hsu, Julian Ibarz, Brian Ichter, Alex Irpan, Tomas Jackson, Sally Jesmonth, Nikhil Joshi, Ryan Julian, Dmitry Kalashnikov, Y...
2022 arXiv
-
[38]
MagicDrive: Street view generation with diverse 3d geometry control
Ruiyuan Gao, Kai Chen, Enze Xie, Lanqing Hong, Zhenguo Li, Dit-Yan Yeung, and Qiang Xu. MagicDrive: Street view generation with diverse 3d geometry control. In International Conference on Learning Representations, 2024. 4
2024
-
[39]
Drive- dreamer: Towards real-world-driven world models for autonomous driving
Xiaofeng Wang, Zheng Zhu, Guan Huang, Xinze Chen, Jiagang Zhu, and Jiwen Lu. Drive- dreamer: Towards real-world-driven world models for autonomous driving. arXiv preprint arXiv:2309.09777, 2023. 4
2023 arXiv
-
[40]
World- dreamer: Towards general world models for video generation via predicting masked tokens
Xiaofeng Wang, Zheng Zhu, Guan Huang, Boyuan Wang, Xinze Chen, and Jiwen Lu. World- dreamer: Towards general world models for video generation via predicting masked tokens. arXiv preprint arXiv:2401.09985, 2024. 4
2024 arXiv
-
[41]
Gaia-1: A generative world model for autonomous driving
Anthony Hu, Lloyd Russell, Hudson Yeo, Zak Murez, George Fedoseev, Alex Kendall, Jamie Shotton, and Gianluca Corrado. Gaia-1: A generative world model for autonomous driving. arXiv preprint arXiv:2309.17080, 2023. 4 16
2023 arXiv
-
[42]
Drivedreamer4d: World models are effective data machines for 4d driving scene representation
Guosheng Zhao, Chaojun Ni, Xiaofeng Wang, Zheng Zhu, Guan Huang, Xinze Chen, Boyuan Wang, Youyi Zhang, Wenjun Mei, and Xingang Wang. Drivedreamer4d: World models are effective data machines for 4d driving scene representation. arXiv preprint arXiv:2410.13571,
-
[43]
Street gaussians for modeling dynamic urban scenes
Yunzhi Yan, Haotong Lin, Chenxu Zhou, Weijie Wang, Haiyang Sun, Kun Zhan, Xianpeng Lang, Xiaowei Zhou, and Sida Peng. Street gaussians for modeling dynamic urban scenes. arXiv preprint arXiv:2401.01339, 2024. 4
2024 arXiv
-
[44]
Recondreamer: Crafting world models for driving scene reconstruction via online restoration
Chaojun Ni, Guosheng Zhao, Xiaofeng Wang, Zheng Zhu, Wenkang Qin, Guan Huang, Chen Liu, Yuyin Chen, Yida Wang, Xueyang Zhang, et al. Recondreamer: Crafting world models for driving scene reconstruction via online restoration. arXiv preprint arXiv:2411.19548, 2024. 4
2024 arXiv
-
[45]
Tenenbaum
Po-Chen Ko, Jiayuan Mao, Yilun Du, Shao-Hua Sun, and Joshua B. Tenenbaum. Learning to act from actionless videos through dense correspondences, 2023. 4
2023
-
[46]
Learning universal policies via text-guided video generation
Yilun Du, Sherry Yang, Bo Dai, Hanjun Dai, Ofir Nachum, Josh Tenenbaum, Dale Schuurmans, and Pieter Abbeel. Learning universal policies via text-guided video generation. Advances in neural information processing systems, 36:9156–9172, 2023. 4
2023
-
[47]
Robo- Dreamer: Learning compositional world models for robot imagination
Siyuan Zhou, Yilun Du, Jiaben Chen, Yandong Li, Dit-Yan Yeung, and Chuang Gan. Robo- Dreamer: Learning compositional world models for robot imagination. In Ruslan Salakhutdi- nov, Zico Kolter, Katherine Heller, Adrian Weller, Nuria Oliver, Jonathan Scarlett, and Felix Berkenka...
2024
-
[48]
Manipdreamer: Boosting robotic manipulation world model with action tree and visual guidance, 2025
Ying Li, Xiaobao Wei, Xiaowei Chi, Yuming Li, Zhongyu Zhao, Hao Wang, Ningning Ma, Ming Lu, and Shanghang Zhang. Manipdreamer: Boosting robotic manipulation world model with action tree and visual guidance, 2025. 4
2025
-
[49]
Robotransfer: Geometry-consistent video diffusion for robotic visual policy transfer, 2025
Liu Liu, Xiaofeng Wang, Guosheng Zhao, Keyu Li, Wenkang Qin, Jiaxiong Qiu, Zheng Zhu, Guan Huang, and Zhizhong Su. Robotransfer: Geometry-consistent video diffusion for robotic visual policy transfer, 2025. 4
2025
-
[50]
3d gaussian splatting for real-time radiance field rendering
Bernhard Kerbl, Georgios Kopanas, Thomas Leimkühler, and George Drettakis. 3d gaussian splatting for real-time radiance field rendering. ACM ToG, 2023. 4
2023
-
[51]
Nerf: Representing scenes as neural radiance fields for view synthesis
Ben Mildenhall, Pratul P Srinivasan, Matthew Tancik, Jonathan T Barron, Ravi Ramamoor- thi, and Ren Ng. Nerf: Representing scenes as neural radiance fields for view synthesis. Communications of the ACM, 2021. 4
2021
-
[52]
Recondreamer++: Harmonizing generative and reconstructive models for driving scene representation
Guosheng Zhao, Xiaofeng Wang, Chaojun Ni, Zheng Zhu, Wenkang Qin, Guan Huang, and Xingang Wang. Recondreamer++: Harmonizing generative and reconstructive models for driving scene representation. arXiv preprint arXiv:2503.18438, 2025. 4
2025 arXiv
-
[53]
Wonderturbo: Generating interactive 3d world in 0.72 seconds
Chaojun Ni, Xiaofeng Wang, Zheng Zhu, Weijie Wang, Haoyun Li, Guosheng Zhao, Jie Li, Wenkang Qin, Guan Huang, and Wenjun Mei. Wonderturbo: Generating interactive 3d world in 0.72 seconds. arXiv preprint arXiv:2504.02261, 2025. 4
2025 arXiv
-
[54]
Gs-gvins: A tightly-integrated gnss-visual-inertial navigation system augmented by 3d gaussian splatting
Zelin Zhou, Saurav Uprety, Shichuang Nie, and Hongzhou Yang. Gs-gvins: A tightly-integrated gnss-visual-inertial navigation system augmented by 3d gaussian splatting. arXiv preprint arXiv:2502.10975, 2025. 4
2025
-
[55]
Foundation model-guided gaussian splatting for 4d reconstruction of deformable tissues
Yifan Liu, Chenxin Li, Hengyu Liu, Chen Yang, and Yixuan Yuan. Foundation model-guided gaussian splatting for 4d reconstruction of deformable tissues. IEEE Transactions on Medical Imaging, 44(6):2672–2682, 2025. 4
2025
-
[56]
Og-mapping: Octree-based structured 3d gaussians for online dense mapping
Meng Wang, Junyi Wang, Changqun Xia, Chen Wang, and Yue Qi. Og-mapping: Octree-based structured 3d gaussians for online dense mapping. arXiv preprint arXiv:2408.17223, 2024. 4
2024 arXiv
-
[57]
Robo-gs: A physics consistent spatial-temporal model for robotic arm with hybrid representation, 2024
Haozhe Lou, Yurong Liu, Yike Pan, Yiran Geng, Jianteng Chen, Wenlong Ma, Chenglong Li, Lin Wang, Hengzhen Feng, Lu Shi, Liyi Luo, and Yongliang Shi. Robo-gs: A physics consistent spatial-temporal model for robotic arm with hybrid representation, 2024. 4 17
2024
-
[58]
Splatsim: Zero-shot sim2real transfer of rgb manipulation policies using gaussian splatting, 2024
Mohammad Nomaan Qureshi, Sparsh Garg, Francisco Yandun, David Held, George Kantor, and Abhishesh Silwal. Splatsim: Zero-shot sim2real transfer of rgb manipulation policies using gaussian splatting, 2024. 4
2024
-
[59]
Auto-encoding variational bayes, 2022
Diederik P Kingma and Max Welling. Auto-encoding variational bayes, 2022. 6, 7
2022
-
[60]
Grounding dino: Marrying dino with grounded pre-training for open-set object detection
Shilong Liu, Zhaoyang Zeng, Tianhe Ren, Feng Li, Hao Zhang, Jie Yang, Chunyuan Li, Jianwei Yang, Hang Su, Jun Zhu, et al. Grounding dino: Marrying dino with grounded pre-training for open-set object detection. arXiv preprint arXiv:2303.05499, 2023. 6
2023 arXiv
-
[61]
Sam 2: Segment anything in images and videos, 2024
Nikhila Ravi, Valentin Gabeur, Yuan-Ting Hu, Ronghang Hu, Chaitanya Ryali, Tengyu Ma, Haitham Khedr, Roman Rädle, Chloe Rolland, Laura Gustafson, Eric Mintun, Junting Pan, Kalyan Vasudev Alwala, Nicolas Carion, Chao-Yuan Wu, Ross Girshick, Piotr Dollár, and Christoph Feichtenh...
2024
-
[62]
Zhao, and Chelsea Finn
Zipeng Fu, Tony Z. Zhao, and Chelsea Finn. Mobile aloha: Learning bimanual mobile manipulation with low-cost whole-body teleoperation. In Conference on Robot Learning (CoRL), 2024. 7
2024
-
[63]
Towards accurate generative models of video: A new metric & challenges
Thomas Unterthiner, Sjoerd Van Steenkiste, Karol Kurach, Raphael Marinier, Marcin Michalski, and Sylvain Gelly. Towards accurate generative models of video: A new metric & challenges. arXiv preprint arXiv:1812.01717, 2018. 8
2018 arXiv
-
[64]
The unrea- sonable effectiveness of deep features as a perceptual metric
Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shechtman, and Oliver Wang. The unrea- sonable effectiveness of deep features as a perceptual metric. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 586–595, 2018. 8
2018
-
[65]
Learning fine-grained bimanual manipulation with low-cost hardware
Tony Z Zhao, Vikash Kumar, Sergey Levine, and Chelsea Finn. Learning fine-grained bimanual manipulation with low-cost hardware. arXiv preprint arXiv:2304.13705, 2023. 8
2023 arXiv
-
[66]
Gemini: a family of highly capable multimodal models
Gemini Team, Rohan Anil, Sebastian Borgeaud, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M Dai, Anja Hauth, Katie Millican, et al. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805, 2023. 10
2023 arXiv
-
[67]
Proximal policy optimization algorithms
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. 12
2017 arXiv
-
[68]
Training a helpful and harmless assistant with reinforcement learning from human feedback
Yuntao Bai, Andy Jones, Kamal Ndousse, Amanda Askell, Anna Chen, Nova DasSarma, Dawn Drain, Stanislav Fort, Deep Ganguli, Tom Henighan, et al. Training a helpful and harmless assistant with reinforcement learning from human feedback. arXiv preprint arXiv:2204.05862,
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.