REVIEW 4 major objections 5 minor 33 cited by
Memory modules, not wider observation windows, are what let robot policies solve memory-dependent tasks.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-02 19:39 UTC pith:HUDFRONG
load-bearing objection A useful memory benchmark with a clean difficulty metric, but the headline claim that explicit memory causes the gains is only partly established—the baselines are not matched, and the internal ablations need error bars. the 4 major comments →
RMBench: Memory-Dependent Robotic Manipulation Benchmark with Insights into Policy Design
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper argues that memory-dependent manipulation tasks are inherently non-Markovian, and that the standard design of predicting actions from a fixed window of recent observations is the main reason current policies fail on them. Its evidence is a benchmark in which tasks are annotated by Task Memory Complexity — the smallest number of past task-relevant observations an optimal policy needs — and a modular policy, Mem-0, whose explicit memory components can be removed one at a time. In the paper's evaluation over 100 rollouts per task, Mem-0's success rate averages 52.8% on five M(1) tasks and 28.5% on four M(n) tasks, versus 14.4% and 7.3% for the best of four baselines. The ablation resu
What carries the argument
The central object is Task Memory Complexity, which labels each task M(0), M(1), or M(n) according to how many task-relevant past observations an optimal policy must retain. The carrying mechanism is Mem-0's dual-system architecture: a Planning Module that receives the initial frame, the language goal, and a key-memory window of completed-subtask summaries, and emits a subtask; an Execution Module that conditions a diffusion action generator on the current frame, a persistent anchor memory set at subtask start, and a sliding window of recent image latents; and a Subtask End Classifier that triggers replanning only after predicting termination for eight consecutive timesteps. This division le
Load-bearing premise
The load-bearing premise is that the M(1)/M(n) annotations and task designs isolate memory as the causal variable — if perception difficulty or low-level manipulation precision, rather than lack of memory, drives baseline failures, the central claim about memory mechanisms collapses.
What would settle it
Give a memory-free baseline the ground-truth past state as an extra input (or a much longer observation window) on the same RMBench tasks, and compare across multiple seeds. If its success rate reaches Mem-0's, then the gap is not caused by missing memory; if it does not, the paper's attribution is supported.
If this is right
- If the central claim holds, manipulation policies for non-Markovian tasks should include explicit memory modules rather than relying on fixed-length observation histories.
- Anchor memory — persisting a task-critical reference frame across a subtask — is the largest single contributor to success in the ablations; removing it drops M(1) average from 52.8% to 26.8%.
- Key memory, the record of completed subtasks, is essential for M(n) tasks: removing it collapses the M(n) average from 28.5% to 4.8%.
- Reliable subtask-termination detection is a bottleneck; with ground-truth termination signals, the M(n) average rises to 45.3%, pointing to the classifier as the next target for improvement.
- Real-world trials on three aligned tasks show the same ordering, with the memory-enabled policy at 22.5% average success versus 5.8% for the strongest baseline.
Where Pith is reading between the lines
- If TMC is adopted, it gives the field a task-side memory measure that could be used to build curricula: train on M(0) tasks, then M(1), then M(n), with memory capacity added deliberately at each rung.
- The Press Button failure suggests that explicit memory alone cannot compensate for perception that cannot resolve subtle state cues; a testable fix is adding tactile or proprioceptive signals to the classifier input.
- Because the paper reports single evaluations rather than seed-averaged means with error bars, the size of the memory advantage may shrink under statistical repetition; re-running the same 100-rollout protocol across seeds would tell how much of the gap is robust.
- The anchor-memory idea is a cheap inductive bias that could be transferred to any vision-language-action policy: store one reference observation at subtask boundaries and condition on it, without requiring a full recurrent memory.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces RMBench, a simulation benchmark of nine dual-arm manipulation tasks intended to evaluate memory-dependent robotic manipulation. It also defines a Task Memory Complexity (TMC) metric to classify tasks as M(1) or M(n), and proposes Mem-0, a modular policy with a planning module, an execution module, and a subtask-end classifier, using key memory, anchor memory, and sliding memory. The paper evaluates Mem-0 against DP, ACT, Pi0.5, and X-VLA on RMBench, reports ablation studies, and presents real-world experiments on three tasks. The central claim is that explicit memory modeling yields large systematic gains, summarized as 38.4% average improvement on M(1) tasks and 21.2% on M(n) tasks relative to baselines (§5.1).
Significance. The benchmark and the TMC taxonomy address an underexplored problem: systematic evaluation of memory-dependent manipulation. The modular design of Mem-0, with separable key/anchor/sliding memory components, is a useful experimental vehicle, and the paper includes qualitative failure analysis that helps identify practical bottlenecks. If the central attribution claim were established, the work would provide valuable design guidance for memory-aware policies. However, the current experimental evidence does not isolate memory as the causal factor. The comparisons in Table 1 are confounded by architectural differences, no uncertainty estimates are given, and the TMC annotations are not independently validated. The strengths are the tasks, the modular policy, and the detailed ablations; the weakness is the evidence linking the reported gains specifically to memory.
major comments (4)
- [§4, §5.1, Table 1] The central claim that explicit memory produces the reported +38.4%/+21.2% gains is underdetermined because Mem-0 differs from the baselines in many respects beyond memory: it uses Qwen3-VL backbones, a diffusion-transformer action head, a subtask classifier, a planner, and a custom training recipe (§4). DP and ACT are lightweight non-VLA policies trained from scratch; Pi0.5 and X-VLA are not given subtask decomposition or any memory augmentation. The ablations in Table 2 remove one memory module at a time but never remove all memory components while keeping the rest of the architecture identical. I request a memory-free control of Mem-0 (same VLM, same DiT action head, same classifier, same training, but with anchor/sliding/key memory disabled) to support the attribution.
- [§5.1, Table 1 and §5.3, Table 3] All success rates are point estimates without standard deviations, confidence intervals, training seeds, or significance tests. For 100 rollout episodes, the standard error of a binary success rate at 50% is 5%; at 4% it is about 2%. Thus differences such as Mem-0 4% vs Pi0.5/X-VLA 9% on Observe and Pick Up, or Mem-0 14% vs DP 20% on Swap T, may be noise. The real-world results in Table 3 use 40 trials and likewise report no variance. Report results across at least three training seeds with means and standard errors, and ideally a paired or bootstrap significance test, before claiming systematic gains.
- [§3.1, §3.3, §5.1] The M(1)/M(n) annotations are asserted by construction rather than established by an independent procedure. The TMC definition in Eq. (2) is formal, but the assignment of each task to a memory-complexity level and the claim that these tasks isolate memory as the causal variable are not validated. Baseline failures are attributed to the Markovian assumption in §5.1, but perception error, low-level manipulation precision, and task difficulty are not controlled. Provide a concrete test of the memory bottleneck, e.g., evaluate a memory-free version of Mem-0 with access to a privileged summary of the task-relevant past, or augment the baselines with simple memory inputs (such as a remembered object state) and show that the gap closes. Without this, the benchmark result cannot separate memory from other task demands.
- [§5.1, Table 1] The per-task results contradict parts of the strong summary. On two of five M(1) tasks, Mem-0 underperforms the baselines: Observe and Pick Up (4% vs 9% for Pi0.5 and X-VLA) and Swap T (14% vs 20% for DP). On Press Button, all methods achieve 0%. The paper acknowledges these outcomes in §5.1, but the aggregate statement of 'significant improvements on the majority of memory-dependent tasks' glosses over them. The claim should be qualified per task, and the reasons for these counterexamples should be analyzed more quantitatively rather than only qualitatively in Appendix C.
minor comments (5)
- [§4.2, Eq. (6)] The notation M^m_t for the two memory buffers is confusing; the paper later writes Manchor_t and Mslide_t. Use consistent subscripts/superscripts for anchor and sliding memories.
- [§3.3, Table 4, §5.3] Task names are inconsistent across the paper: 'Put Back Block' vs 'Put Back Blocks', 'Swap Block' vs 'Swap Blocks'. Standardize these names.
- [§5.1] The sentence beginning 'we benchmark a diverse set of policies' begins with a lowercase 'we'; also the text could explicitly state whether the 50 demonstrations and 100 rollouts are the same across all baselines, which is implied but not specified in the table caption.
- [§4.3] The subtask-end classifier's temporal consistency window L=8 and the action horizon H=30 are fixed hyperparameters; the paper does not report sensitivity to these choices. A brief sensitivity check, even in the appendix, would strengthen the design claims.
- [Appendix C] The failure analysis is useful but mostly qualitative. It would be improved by reporting the frequency of each failure mode across the evaluated rollouts, especially for the Press Button task where the success rate is zero.
Circularity Check
No significant circularity: the memory-benefit claim is an empirical benchmark result with internal ablations, not a consequence forced by the paper's definitions or self-citations.
full rationale
The paper's claimed derivation chain is: Task Memory Complexity (TMC) definition → RMBench task design → evaluation of Mem-0 and baselines → insight that explicit memory components matter. None of these steps reduces to its own inputs by construction. TMC is defined through POMDP optimality over memory states, not in terms of Mem-0 or in terms of measured success rates. The M(1)/M(n) annotations are design assumptions about the tasks, not parameters fitted to the policy outputs. The headline gains (+38.4% on M(1), +21.2% on M(n)) are reported success-rate differences from Table 1; they are measured outcomes, not predictions derived from the memory architecture, and they could in principle have disfavored Mem-0. The ablation study in Table 2 removes anchor, sliding, and key memory components and shows performance drops, providing an internal control that is not circular. The citation of RoboTwin 2.0 (Chen et al., 2025a) supports the simulator infrastructure only and is not load-bearing for the memory claim; no uniqueness theorem or prior-work ansatz is imported to force the design. The skeptic's concern that Mem-0 differs from baselines in backbone, planning, and training is a confound or external-validity issue, not an equation-level circularity, so it does not raise the circularity score.
Axiom & Free-Parameter Ledger
free parameters (4)
- Sliding memory window size K =
not reported
- Subtask-end consistency window L =
8
- Action horizon H =
30
- Training hyperparameters (LoRA rank, LR, batch, iterations) =
see Tables 5-6
axioms (4)
- standard math Robotic manipulation can be modeled as a POMDP with latent state and memory state M_t^(m) (Eq. 1-2)
- domain assumption The number of task-relevant past observations m can be annotated per task and correctly identifies the memory demand
- domain assumption Baseline policies' failures are due to Markovian fixed-window assumptions rather than other factors
- domain assumption Success rate over 100 simulation rollouts / 40 real trials is a reliable performance measure
invented entities (2)
-
Task Memory Complexity (M(m))
no independent evidence
-
Mem-0's key/anchor/sliding memory modules
no independent evidence
read the original abstract
Robotic manipulation policies have made rapid progress in recent years, yet most existing approaches give limited consideration to memory capabilities. Consequently, they struggle to solve tasks that require reasoning over historical observations and maintaining task-relevant information over time, which are common requirements in real-world manipulation scenarios. Although several memory-aware policies have been proposed, systematic evaluation of memory-dependent manipulation remains underexplored, and the relationship between architectural design choices and memory performance is still not well understood. To address this gap, we introduce RMBench, a simulation benchmark comprising 9 manipulation tasks that span multiple levels of memory complexity, enabling systematic evaluation of policy memory capabilities. We further propose Mem-0, a modular manipulation policy with explicit memory components designed to support controlled ablation studies. Through extensive simulation and real-world experiments, we identify memory-related limitations in existing policies and provide empirical insights into how architectural design choices influence memory performance. The website is available at https://rmbench.github.io/.
Figures
Forward citations
Cited by 33 Pith papers
-
RoboMME-Interference: Benchmarking Robot Memory Under Interference
Introduces RoboMME-Interference benchmark showing memory-augmented VLAs improve without distractors but decay steadily as unrelated sessions accumulate in history.
-
EBench: Elemental Diagnosis of Generalist Mobile Manipulation Policies
EBench is a benchmark that evaluates generalist mobile manipulation policies on 26 tasks across 5 capability and 4 generalization dimensions, revealing distinct capability profiles among models with similar success rates.
-
VoLo: A Physical Orchestrator for Open-Vocabulary Long-Horizon Manipulation
VoLoAgent uses a VLM to steer heterogeneous robot capabilities as interruptible tools for long-horizon manipulation and introduces the RoboVoLo benchmark, claiming substantial outperformance over single VLA/VLM or too...
-
NativeMEM: Native Memory Compression for Long-Horizon Robotic Manipulation
Repurposing a VLA’s vision encoder to emit one action-supervised memory token per historical frame-view yields long-horizon manipulation with large success gains and low latency.
-
Chronos: A Physics-Informed Full-History Framework for Non-Markovian Long-Horizon Manipulation
Chronos elevates full observation history to the policy's latent state via selective SSM tokens and a Schrödinger-inspired acceleration bridge, achieving large gains on memory-dependent robot tasks with fewer parameters.
-
Analytic Concept-Centric Memory for Agentic Embodied Manipulation
Proposes a structured concept-centric memory system for embodied agents that connects object, scene, transition, and skill memories to support coarse-to-fine retrieval and improve task performance over baselines.
-
DIM-WAM: World-Action Modeling with Diverse Historical Event Memory
DiM-WAM is a memory-augmented world-action model that integrates multi-scale historical events and global task progress to improve long-horizon robot manipulation performance.
-
WatchAct: A Benchmark for Behavior-Grounded Robot Manipulation
WatchAct is a new benchmark of 3000 instances across 14 tasks in four cognitive domains for evaluating video-grounded robot manipulation, with current systems achieving at most 16.3% success.
-
KEMO: Event-Driven Keyframe Memory for Long-Horizon Robot Manipulation with VLA Policies
KEMO is an event-driven keyframe memory system that improves VLA policy success rates by 23.6% on real dual-arm tasks by selectively preserving task-relevant history via kinematics-visual event detection and gated fusion.
-
RoboMME-Interference: Benchmarking Robot Memory Under Interference
RoboMME-Interference measures VLA memory under cross-session interference and finds that all tested systems decay to near their no-memory baseline as unrelated sessions accumulate.
-
Remember what you did?: Learning Behavioral Memories for Partially Observable Object Manipulation
CAMP learns a compressed behavioral memory from action history to enable success in long-horizon partially observable object manipulation without extra supervision, showing gains over baselines in real-robot and simul...
-
EventVLA: Event-Driven Visual Evidence Memory for Long-Horizon Vision-Language-Action Policies
EventVLA introduces foundational visual anchors and a Keyframe Evidence Memory module that predicts future keyframe probabilities from VLA embeddings to improve long-horizon task success by an average of 40% on 17 sim...
-
AnnotateAnything: Automatic Annotation of 3D Assets for Robot Manipulation
AnnotateAnything converts passive 3D assets into manipulation-ready assets by combining vision-language reasoning for semantics with parallel physics pipelines for executable action annotations such as grasps and arti...
-
Action-Effect Memory Pretraining for Robot Manipulation
AEM pretrains compact history representations via masked modeling on interleaved vision-action sequences to boost downstream robot manipulation in simulation and real settings.
-
$\mu$VLA: On Recurrent Memory for Partially Observable Manipulation in VLA Models
Adding recurrent memory tokens to VLA models raises success rates on partially observable manipulation tasks from 0.42 to 0.84 on training and 0.07 to 0.23 on held-out tasks while preserving performance under full obs...
-
AffordanceVLA: A Vision-Language-Action Model Empowering Action Generation through Affordance-Aware Understanding
AffordanceVLA proposes a VLA model with affordance-aware modules (Which2Act, Where2Act, How2Act) in a Mixture-of-Transformer trained in three stages to improve robotic manipulation.
-
IntentVLA: Short-Horizon Intent Modeling for Aliased Robot Manipulation
History-conditioned short-horizon intent tokens stabilize chunked VLA policies under observation aliasing and raise success on AliasBench and standard robot benchmarks.
-
RoboMemArena: A Comprehensive and Challenging Robotic Memory Benchmark
RoboMemArena is a new large-scale robotic memory benchmark with real-world tasks, and PrediMem is a dual VLA system that outperforms baselines by managing memory buffers with predictive coding.
-
SeedPolicy: Horizon Scaling via Self-Evolving Diffusion Policy for Robot Manipulation
Adding a recurrent, gated cross-attention memory to Diffusion Policy improves long-horizon robot manipulation success by keeping a compact evolving state instead of stacking more observation frames.
-
SeedPolicy: Horizon Scaling via Self-Evolving Diffusion Policy for Robot Manipulation
SeedPolicy introduces self-evolving gated attention to extend the temporal horizon of diffusion policies, yielding 36.8% and 169% relative gains over standard DP on clean and randomized RoboTwin 2.0 tasks.
-
Towards Trustworthy Embodied Intelligence: A Systems Framework and Graded Trustworthiness Levels
A four-layer systems framework and T0–T5 hierarchy for grading and maintaining bounded trustworthiness claims in embodied AI systems.
-
Cortex: A Bidirectionally Aligned Embodied Agent Framework for Long-horizon Manipulation
A dual-system framework with a structured subtask interface, event-balanced training, and inference harness enables VLM-guided long-horizon robotic manipulation, achieving 95.5% on LIBERO-Long and 65% on real-world ch...
-
DIM-WAM: World-Action Modeling with Diverse Historical Event Memory
Multi-bank similarity-merged event memory plus progress supervision raises long-horizon WAM success from 28.4% to 69.8% on RMBench and full-task success from 52.5% to 80% on real Franka tasks.
-
EventVLA: Event-Driven Visual Evidence Memory for Long-Horizon Vision-Language-Action Policies
EventVLA uses a foresight-driven Keyframe Evidence Memory module to selectively store sparse task-critical visual events predicted from VLA latent embeddings, reporting +40% average success rate gains on 17 simulation...
-
HiMem-WAM: Hierarchical Memory-Gated World Action Models for Robotic Manipulation
HiMem-WAM integrates hierarchical latent actions and boundary-aware memory gates into world action models to enhance robustness and performance on memory-dependent long-horizon robotic tasks.
-
MemoryVLA++: Temporal Modeling via Memory and Imagination in Vision-Language-Action Models
MemoryVLA++ integrates a perceptual-cognitive memory bank and denoising world model into VLA models to enable temporal reasoning, yielding performance gains on manipulation benchmarks and real-robot tasks.
-
World-Language-Action Model for Unified World Modeling, Language Reasoning, and Action Synthesis
WLA models use an autoregressive Transformer to jointly predict textual subtasks, subgoal images, and robot actions from instructions, images, and states, reporting SOTA success rates on RoboTwin2.0 and RMBench.
-
IntentVLA: Short-Horizon Intent Modeling for Aliased Robot Manipulation
IntentVLA conditions VLA chunk generation on a compact intent code from recent observations and introduces AliasBench to evaluate stability under short-horizon observation aliasing, reporting gains on multiple robot b...
-
Goal2Skill: Long-Horizon Manipulation with Adaptive Planning and Reflection
A dual VLM-VLA framework for long-horizon robot manipulation achieves 32.4% success on RMBench tasks versus 9.8% for the strongest baseline via structured memory and closed-loop adaptive replanning.
-
MemoAct: Atkinson-Shiffrin-Inspired Hierarchical Memory-Augmented Policy for Robotic Manipulation
MemoAct combines a lossless short-term memory bank with a compressed long-term memory bank, enabling robotic manipulation policies to track task state precisely and retain long-horizon context, outperforming prior mem...
-
MemoryWAM: Efficient World Action Modeling with Persistent Memory
MemoryWAM is a world action model with a hybrid memory design using recent frames, anchor frames, and gist tokens for efficient long-horizon robotic manipulation.
-
Data Pyramid for Embodied Manipulation
Embodied training data form a five-layer pyramid—real-robot, UMI, ego/exo, simulation, general V–L—ordered by the trade-off between scale and robot alignment, and model capabilities track how those layers are mixed.
-
Situation Perception: A Necessary Primitive to Artificial Superintelligence
Situation perception is proposed as a necessary primitive for artificial superintelligence, requiring abstract prediction, long-term compressed memory, and objective-guided active learning.
Reference graph
Works this paper leans on
-
[1]
Mo- tus: A unified latent action world model.arXiv preprint arXiv:2512.13030,
Bi, H., Tan, H., Xie, S., Wang, Z., Huang, S., Liu, H., Zhao, R., Feng, Y ., Xiang, C., Rong, Y ., et al. Mo- tus: A unified latent action world model.arXiv preprint arXiv:2512.13030,
-
[4]
R., Fox, D., Krishna, R., and Duan, J
Fang, H., Grotz, M., Pumacay, W., Wang, Y . R., Fox, D., Krishna, R., and Duan, J. Sam2act: Integrating visual foundation model with a memory architecture for robotic manipulation.arXiv preprint arXiv:2501.18564,
-
[5]
Han, S., Qiu, B., Liao, Y ., Huang, S., Gao, C., Yan, S., and Liu, S. Robocerebra: A large-scale benchmark for long- horizon robotic manipulation evaluation.arXiv preprint arXiv:2506.06677,
-
[6]
Intelligence, P., Amin, A., Aniceto, R., Balakrishna, A., Black, K., Conley, K., Connors, G., Darpinian, J., Dha- balia, K., DiCarlo, J., Driess, D., Equi, M., Esmail, A., Fang, Y ., Finn, C., Glossop, C., Godden, T., Goryachev, I., Groom, L., Hancock, H., Hausman, K., Hussein, G., Ichter, B., Jakubczak, S., Jen, R., Jones, T., Katz, B., Ke, L., Kuchi, C....
-
[8]
R., Villa-Renteria, I., Tang, J
Li, C., Zhang, R., Wong, J., Gokmen, C., Srivastava, S., Mart´ın-Mart´ın, R., Wang, C., Levine, G., Ai, W., Mar- tinez, B., Yin, H., Lingelbach, M., Hwang, M., Hiranaka, A., Garlanka, S., Aydin, A., Lee, S., Sun, J., Anvari, M., Sharma, M., Bansal, D., Hunter, S., Kim, K.-Y ., Lou, A., Matthews, C. R., Villa-Renteria, I., Tang, J. H., Tang, C., Xia, F., L...
-
[9]
Li, Q., Liang, Y ., Wang, Z., Luo, L., Chen, X., Liao, M., Wei, F., Deng, Y ., Xu, S., Zhang, Y ., et al. Cogact: A foundational vision-language-action model for synergiz- ing cognition and action in robotic manipulation.arXiv preprint arXiv:2411.19650, 2024b. Li, X., Hsu, K., Gu, J., Pertsch, K., Mees, O., Walke, H. R., Fu, C., Lunawat, I., Sieh, I., Kir...
-
[10]
Lin, M., Ding, P., Wang, S., Zhuang, Z., Liu, Y ., Tong, X., Song, W., Lyu, S., Huang, S., and Wang, D. Hif-vla: Hindsight, insight and foresight through motion represen- tation for vision-language-action models.arXiv preprint arXiv:2512.09928,
-
[11]
URL https://arxiv. org/abs/2306.03310. Lu, G., Gao, Z., Chen, T., Dai, W., Wang, Z., Ding, W., and Tang, Y . Manicm: Real-time 3d diffusion policy via consistency model for robotic manipulation.arXiv preprint arXiv:2406.01586,
-
[12]
Robocasa: Large- scale simulation of everyday tasks for generalist robots
Nasiriany, S., Maddukuri, A., Zhang, L., Parikh, A., Lo, A., Joshi, A., Mandlekar, A., and Zhu, Y . Robocasa: Large- scale simulation of everyday tasks for generalist robots. arXiv preprint arXiv:2406.02523,
-
[14]
Shi, H., Xie, B., Liu, Y ., Sun, L., Liu, F., Wang, T., Zhou, E., Fan, H., Zhang, X., and Huang, G. Memo- ryvla: Perceptual-cognitive memory in vision-language- action models for robotic manipulation.arXiv preprint arXiv:2508.19236,
-
[15]
Memer: Scal- ing up memory for robot control via experience retrieval
Sridhar, A., Pan, J., Sharma, S., and Finn, C. Memer: Scal- ing up memory for robot control via experience retrieval. arXiv preprint arXiv:2510.20328,
-
[16]
Dense policy: Bidirec- tional autoregressive learning of actions.arXiv preprint arXiv:2503.13217,
Su, Y ., Zhan, X., Fang, H., Xue, H., Fang, H.-S., Li, Y .-L., Lu, C., and Yang, L. Dense policy: Bidirec- tional autoregressive learning of actions.arXiv preprint arXiv:2503.13217,
-
[17]
10 RMBench: Memory-Dependent Robotic Manipulation Benchmark with Insights into Policy Design Team, R
URLhttps://arxiv.org/abs/2410.00425. 10 RMBench: Memory-Dependent Robotic Manipulation Benchmark with Insights into Policy Design Team, R. Rdt2: Enabling zero-shot cross-embodiment gen- eralization by scaling up umi data, September
-
[18]
Wen, J., Zhu, Y ., Zhu, M., Tang, Z., Li, J., Zhou, Z., Liu, X., Shen, C., Peng, Y ., and Feng, F
URL https: //arxiv.org/abs/2505.11032. Wen, J., Zhu, Y ., Zhu, M., Tang, Z., Li, J., Zhou, Z., Liu, X., Shen, C., Peng, Y ., and Feng, F. Diffusionvla: Scaling robot foundation models via unified diffusion and autore- gression. InForty-second International Conference on Machine Learning. Wen, J., Zhu, M., Zhu, Y ., Tang, Z., Li, J., Zhou, Z., Li, C., Liu,...
-
[19]
Wen, J., Zhu, Y ., Li, J., Tang, Z., Shen, C., and Feng, F. Dexvla: Vision-language model with plug-in diffu- sion expert for general robot control.arXiv preprint arXiv:2502.05855, 2025a. Wen, J., Zhu, Y ., Li, J., Zhu, M., Tang, Z., Wu, K., Xu, Z., Liu, N., Cheng, R., Shen, C., et al. Tinyvla: Towards fast, data-efficient vision-language-action models fo...
-
[21]
URL https://arxiv.org/abs/ 2304.13705. Zheng, J., Li, J., Wang, Z., Liu, D., Kang, X., Feng, Y ., Zheng, Y ., Zou, J., Chen, Y ., Zeng, J., Zhang, Y .- Q., Pang, J., Liu, J., Wang, T., and Zhan, X. X-vla: Soft-prompted transformer as scalable cross-embodiment vision-language-action model,
-
[22]
Zheng, Y ., Zhang, R., Zhang, J., Ye, Y ., Luo, Z., Feng, Z., and Ma, Y
URL https:// arxiv.org/abs/2510.10274. Zheng, Y ., Zhang, R., Zhang, J., Ye, Y ., Luo, Z., Feng, Z., and Ma, Y . Llamafactory: Unified efficient fine- tuning of 100+ language models. InProceedings of the 62nd Annual Meeting of the Association for Computa- tional Linguistics (Volume 3: System Demonstrations), Bangkok, Thailand,
-
[2020]
Ze, Y ., Zhang, G., Zhang, K., Hu, C., Wang, M., and Xu, H. 3d diffusion policy: Generalizable visuomotor policy learning via simple 3d representations.arXiv preprint arXiv:2403.03954,
-
[2023]
Lan, Z., Jiang, Y ., Wang, R., Xie, X., Zhang, R., Zhu, Y ., Li, P., Yang, T., Chen, T., Gao, H., et al. Autobio: A simulation and benchmark for robotic automation in digi- tal biology laboratory.arXiv preprint arXiv:2505.14030,
-
[2024]
Shen, W., Liu, Y ., Wu, Y ., Liang, Z., Gu, S., Wang, D., Nian, T., Xu, L., Qin, Y ., Pang, J., et al. Expertise need not monopolize: Action-specialized mixture of ex- perts for vision-language-action learning.arXiv preprint arXiv:2510.14300,
-
[2025]
Chen, B., Wan, W., Chen, T., Guo, X., Xu, C., Qi, Y ., Zhang, H., Wu, L., Xu, T., Li, Z., et al. Univtac: A unified simulation platform for visuo-tactile manipulation data generation, learning, and benchmarking.arXiv preprint arXiv:2602.10093,
-
[2026]
Chen, T., Chen, Z., Chen, B., Cai, Z., Liu, Y ., Li, Z., Liang, Q., Lin, X., Ge, Y ., Gu, Z., et al. Robotwin 2.0: A scal- able data generator and benchmark with strong domain randomization for robust bimanual robotic manipulation. arXiv preprint arXiv:2506.18088, 2025a. Chen, T., Mu, Y ., Liang, Z., Chen, Z., Peng, S., Chen, Q., Xu, M., Hu, R., Zhang, H....
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.