Research
Dynin-Robotics: Omnimodal Unified Diffusion Vision-Language-Action Model
Overview Research area: Robotics, specifically vision-language-action (VLA) foundation models and multimodal generative modeling. Technical level: Advanced. Scope: This paper presents Dynin-Robotics,

- arXiv
- 2609.13053
- Published
- 2026-09-11
- Authors
- Hoeun Lee, Jaeik Kim, Jusang Oh, Jinhyeok Kim, Geon Choi, Hyeonggeun Kim, Jaeyoung Do
AI summary
Overview
- Research area: Robotics, specifically vision-language-action (VLA) foundation models and multimodal generative modeling.
- Technical level: Advanced.
- Scope: This paper presents Dynin-Robotics, a single masked-diffusion model that treats language, images, goal states, and robot actions as tokens in one shared sequence, and shows that training several prediction tasks in this shared space improves robot manipulation and enables flexible, faster inference.
What This Paper Is About
Most robot policies either adapt a vision-language model to output actions or use a video model to predict future frames, but rarely unify language understanding, visual prediction, and control inside one model. The authors ask whether a single trajectory-level model can learn to predict actions, future observations, goal states, and instructions as different "masked token" problems, and then reuse those predictions at test time to make control more accurate. The goal is a shared interface where complementary robot objectives reinforce each other rather than competing.
Key Contributions
- Unified robot trajectory modeling with masked diffusion. The authors extend Dynin-Omni, an omnimodal masked-diffusion backbone, with discrete robot-action tokens and define four training objectives—Policy, World Modeling, Task Understanding, and Goal-State Prediction—as conditional denoising queries over one shared trajectory representation.
- Compositional and accelerated inference from a single model. The same weights support six inference modes, including goal-guided action decoding, joint action–next-state denoising, and world-model-based candidate reranking. Block-parallel decoding with context reuse cuts sequential action-generation cost.
- Diagnostics and controlled evaluation. A two-task VLABench diagnostic compares π0.5 and Mimic-Video on task performance and sensitivity to language instructions, and within-model ablations isolate the effects of robot pretraining, objective supervision, and inference composition.
- Broad empirical validation. The model is evaluated on simulation benchmarks and a physical Franka Research 3 robot, with additional qualitative tests of goal generation and trajectory-to-instruction reconstruction on DROID without DROID-specific post-training.
Main Findings
- Robot pretraining helps adaptation. Continual pretraining on roughly 1.33 million trajectories from 48 Open X-Embodiment datasets improves downstream adaptation on two VLABench tasks within a fixed Stage-2 step budget.
- Multi-objective training improves robustness to rephrased instructions. Under the same coupled decoder, the full objective mixture outperforms Policy-only post-training on shifted-instruction trials.
- Prediction composition matters and is not universally beneficial. Combining goal guidance with joint action–next-state denoising improves shifted-instruction success over action-only decoding, but the gain depends on how the predictions are composed.
- Strong benchmark results. Dynin-Robotics reaches 98.1% average success on LIBERO, 73.0% on zero-shot LIBERO-Plus, and 78.4% average success across four manipulation conditions on a Franka Research 3 platform.
- Substantial decoding speedup. An optimized block-parallel implementation accelerates model-side action decoding by up to 29.2× relative to the base implementation under the reported profiling setup.
- Diagnostic on policy design. On VLABench, π0.5 performs better on SelectFruit (target selection under object and layout variation), while Mimic-Video is competitive on InsertFlower (grasping, alignment, insertion), particularly under indirect Track 4 instructions. Replacing instructions with random strings degrades π0.5 more than Mimic-Video, indicating different reliance on language.
- Objective-conditioned behavior from one checkpoint. The Stage-1 checkpoint, without DROID-specific post-training, supports action-conditioned visual prediction, goal-state generation, action prediction, and qualitative trajectory-to-instruction reconstruction.
Methodology in Plain English
The researchers start from Dynin-Omni, a model that already handles text, images, and speech as discrete tokens and learns by filling in masked tokens using bidirectional context. They add a reserved block of tokens for robot actions: continuous actions are normalized, uniformly quantized into bins, and mapped into that block. A trajectory is then serialized as a typed sequence containing the objective marker, observations, instruction, actions, optional next-state images, optional goal images, optional sensor spans, and metadata.
By changing which spans are visible and which are masked, the same model learns four tasks: predicting actions from observations and instructions (Policy), predicting the next observation from an action (World Modeling), predicting a terminal goal image from an observation and instruction (Goal-State Prediction), and reconstructing an instruction from trajectory frames (Task Understanding). Text and image targets use random masking; action targets use contiguous block masking over the time-major action sequence. Losses are combined with scheduled weights, and training proceeds in two stages: large-scale continual pretraining on Open X-Embodiment data, then benchmark-specific post-training.
At inference, masked targets are initialized as mask tokens and iteratively refined, with high-confidence tokens committed each step. The authors exploit this framework to try six compositions, including predicting a goal image before decoding actions, jointly denoising actions and the next visual state, and using the world model to score and rerank alternative action candidates. Block-parallel decoding predicts many masked action positions at once, and an optimized inference stack (dInfer) reuses context to raise throughput.
Why This Matters
Impact on research. The paper argues that policy learning, world modeling, goal prediction, and task understanding need not be separate architectures. Framing them as different conditioning layouts over one masked-diffusion backbone offers a common interface for studying how visual prediction and language grounding interact with control, and it provides controlled ablations that isolate which inference compositions actually help.
Real-world applications.
- Language-guided household and service robots that must pick objects by function (for example, selecting an item to cut a package) and adapt when instructions are rephrased.
- Warehouse and logistics manipulation, where goal-image conditioning can specify a target arrangement and world-model reranking can filter risky action candidates.
- Assistive robotics, where robustness to varied phrasings of a command is critical for non-expert users.
- Industrial assembly and contact-rich tasks, for which the paper reserves a typed interface for force/torque, proprioceptive, and tactile token streams.
Industry relevance. A single model that serves as policy, world model, goal predictor, and instruction reconstructor reduces the number of components to train and deploy. The reported 29.2× action-decoding speedup addresses a practical bottleneck for real-time control, and competitive zero-shot results on LIBERO-Plus suggest value in settings where retraining per task is expensive.
Future Directions
- Activating the reserved sensor token interface and evaluating sensor-conditioned policy decoding for contact-rich manipulation, since sensor training and sensor generation are inactive in the released checkpoint.
- Determining a principled rule for when to use each inference composition, given that joint denoising and goal guidance help in some settings but the benefit depends on how predictions are composed.
- Extending the approach beyond the two VLABench diagnostic tasks and the reported manipulation suites to broader, longer-horizon, multi-step real-world tasks.
- Reducing the compute cost of test-time scaling, since allocating more inference to goal prediction and candidate evaluation improves success but increases latency.
- Studying how action tokenization choices—such as the uniformly quantized bins used here versus learned action tokenizers—affect precision and generalization.
Target Audience
Robotics and embodied-AI researchers working on vision-language-action models, diffusion and masked-diffusion generative models, and multimodal foundation models. It also suits engineers building manipulation systems who want to understand how world modeling, goal prediction, and action decoding can be unified in one deployable model. Readers need familiarity with transformer architectures, tokenization, and policy learning to follow the technical details, though the high-level framing and benchmark results are accessible to a broader technical audience.
Authors’ abstract
Visual goal and dynamics prediction can provide language-conditioned robot policies with both a target outcome and a representation of action-dependent scene changes. We bring these predictions into action generation and selection through a shared trajectory model. Dynin-Robotics implements this formulation on Dynin-Omni, an omnimodal masked-diffusion backbone, representing language, visual observations, goals, and actions as discrete tokens. By varying conditioning and target spans, the same model learns action prediction, action-conditioned next-observation prediction, terminal goal-state prediction, and trajectory-to-instruction reconstruction. These interfaces support test-time scaling through goal prediction, action-candidate evaluation, and joint refinement of action and future-state predictions. We continually pretrain the model on approximately 1.33 million trajectories from 48 Open X-Embodiment datasets and adapt it separately to downstream domains. On two VLABench tasks, robot pretraining improves adaptation within a fixed Stage-2 step budget, and the full objective mixture improves shifted-instruction success over Policy-only post-training under the same coupled decoder. Combining goal guidance with joint action-next-state denoising further improves shifted-instruction success over action-only decoding; the benefit depends on how the predictions are composed. Dynin-Robotics achieves competitive performance on LIBERO and zero-shot LIBERO-Plus, together with a 78.4% average success rate across four manipulation conditions on a Franka Research 3 robot. An optimized block-parallel implementation accelerates model-side action decoding by up to 29.2x relative to the base implementation under the reported profiling setup. These results support shared trajectory modeling as a common interface for learning complementary robot objectives and composing their predictions during control.