Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

具身智能PaperEmbodied AI

$N_0$-TWAM: Scaling Tactile-Native World-Action Model for Contact-Rich Manipulation

We present $N_0$-TWAM, a tactile-native world-action model for contact-rich manipulation that predicts both future vision and future contact. To our knowledge, it is the first tactile world-action model trained at large scale, and it shows strong capability on contact-rich tasks. We pre-train $N_0$-TWAM at large scale with visuo-tactile joint training over tactile-rich demonstrations spanning six embodiments and 450 tasks. We use NeoForce, a unified force-based tactile representation, to form a physically grounded contact signal that conditions action generation. To improve long-horizon and multi-stage manipulation, we introduce tactile contact events for task staging and advance through them during execution. For real-time efficiency, we adopt an asymmetric Mixture-of-Transformers architecture that pairs a full-width expert for video prediction with slim experts for downstream action and tactile prediction. Evaluations on both real and simulated benchmarks justify the capabilities of $N_0$-TWAM across a range of contact-rich tasks, and demonstrate the benefit of data scaling for precise tactile and action prediction. In summary, $N_0$-TWAM endows a world-action model with predictive capabilities to foresee vision, touch and action, building a solid foundation for fine-grained manipulation on open contact-rich tasks. The codebase and model checkpoints will be made publicly available to foster further research and development in tactile-enabled robotic manipulation.

NeoteAI Team, Fudan TEAI TeamJuly 26, 20263 min read
中文

1. Overview

Contact-rich manipulation requires tactile sensing, but existing VLA models lack tactile-native world modeling. This paper presents N₀-TWAM (Tactile-Native World-Action Model), a scaling tactile-native world-action model using a unified diffusion Transformer for simultaneous visual world modeling, tactile prediction, and action generation.

N₀-TWAM is pretrained on large-scale self-collected data using a Mixture-of-Transformers (MoT) backbone processing multi-modal streams (multi-view RGB + tactile), trained with conditional flow-matching objectives. Tactile modeling has two aspects: (1) predicting future tactile—from current observation+action to future tactile images; (2) conditioning on observed tactile. A tactile punctuation mechanism enables long-horizon execution: using tactile events to segment demonstrations and advance sub-tasks at inference. Evaluated on UniVTAC and NeoSim simulation plus real robots, N₀-TWAM significantly outperforms baselines on contact-rich tasks.

💡 Key Insight: Tactile should not be an afterthought modality—model it as a "native stream" in the world-action model, on equal footing with vision, using "tactile punctuation" to naturally segment and advance long-horizon tasks via contact events.
N₀-TWAM overview

2. Method

2.1 Model Architecture

N₀-TWAM architecture overview

Conditional flow-matching objective training a Mixture-of-Transformers backbone with parameter-efficient experts and diffusion-forcing cascade. Multi-view RGB and tactile streams are encoded separately, interacting through joint self-attention masks (V/T blocks processed independently then cross-stream exchange).

2.2 Modeling Touch

Joint self-attention mask

Future touch prediction: from current observation+action to future tactile images. Conditioning on observed touch: using observed tactile as conditioning input. Staged training: pretrain NeoForce force-space representation first, then integrate tactile modeling.

2.3 Tactile-Aware Execution

Streaming deployment and real-time inference. Tactile punctuation mechanism: segment demonstrations by tactile contact events—advance to next sub-task when key contact events are detected, enabling long-horizon autonomous execution.

3. Overall Architecture

flowchart TB
    RGB[Multi-view RGB] --> MoT[Mixture-of-Transformers]
    TAC[Tactile Stream] --> MoT
    ACT[Action] --> MoT
    MoT --> PRED_FUTURE[Predict Future Visual+Tactile]
    MoT --> GEN_ACTION[Generate Action]
    PRED_FUTURE --> WORLD[World Model]
    GEN_ACTION --> EXEC[Execution]
    EXEC --> CONTACT[Contact Event Detection
Tactile Punctuation] CONTACT --> |Advance Sub-task| GEN_ACTION style MoT fill:#4f9eff,color:#fff style CONTACT fill:#ff6b6b,color:#fff style EXEC fill:#51cf66,color:#fff

4. Experimental Results

Evaluated on UniVTAC simulation, NeoSim simulation, and real robots. N₀-TWAM significantly outperforms baselines on contact-rich tasks. Task-level gain analysis shows tactile prediction and tactile punctuation are key. Ablation studies validate component contributions. Generalization experiments verify cross-task and cross-sensor transfer.

5.

Autoregressive factorization

$$ p_{\theta}(x^{v}_{1:K},x^{t}_{1:K},x^{a}_{1:K}|c)=\prod_{k=1}^{K}p_{\theta}(x^{v}_{k},x^{t}_{k}|X_{<k},c)\cdot p_{\theta}(x^{a}_{k}|x^{v}_{k},x^{t}_{k},X_{<k},c) $$

Noise interpolation

$$ \hat{x}^{m}_{k,j}=(1-\sigma^{m}_{k,j})\,x^{m}_{k,j}+\sigma^{m}_{k,j}\,\epsilon^{m}_{k,j} $$

History context

$$ X_{<k}=(x^{v}_{<k},x^{t}_{<k},x^{a}_{<k}) $$

Noised sample set

$$ \hat{X}=\{\hat{x}^{m}_{k,j}\} $$

Jacobian dimensions

$$ J_{v}=J_{t}=J_{a}=2 $$

Key Hyperparameters
ParameterValueDescription
Learning rate1e-4Adam optimizer
Batch size256Training batch
Discount $\gamma$0.99Reward discount
Epochs5000Training iterations
Training Configuration
ParameterValue
OptimizerAdam
Learning rate1e-4
Batch size256
Training steps5000
Conclusion

N₀-TWAM is a tactile-native world-action model using a unified MoT diffusion Transformer for simultaneous visual world modeling, tactile prediction, and action generation. Tactile punctuation naturally segments and advances long-horizon tasks via contact events. Significantly outperforms baselines on contact-rich manipulation, demonstrating the value of tactile as a native stream in world modeling.

💡 The core contribution is elevating tactile to a "native stream" in the world-action model—modeled on equal footing with vision through MoT backbone joint training, combined with "tactile punctuation" for natural long-horizon task segmentation via contact events, significantly outperforming baselines on contact-rich manipulation.

Related Papers

Humanoid Seated Locomotion on Passive Mobile Chair

Humanoid Seated Locomotion on Passive Mobile Chair

Research on omnidirectional seated locomotion for humanoids on passive chairs. Policies use proprioception only, outperforming standing in tracking. Analyzes regularization effects on convergence.

人形机器人Humanoid坐姿移动Aug 28, 2026
GigaBrain-0.7: Scaling Embodied Foundation Models to Emergent Capabilities with a Three-System Architecture

GigaBrain-0.7: Scaling Embodied Foundation Models to Emergent Capabilities with a Three-System Architecture

Vision-language-action (VLA) models have become a dominant paradigm for generalist embodied agents, demonstrating strong complex and long-horizon task completion in structured settings. Yet it remains an open question whether current VLA systems can benefit from more effective architectural design, scale to substantially larger and more heterogeneous data regimes, and achieve broader generalization across tasks and embodiments. To this end, we present GigaBrain-0.7, an embodied foundation model with substantially improved generalization across diverse robot embodiments. Specifically, GigaBrain-0.7 unifies understanding, prediction, and action through a three-system architecture, scales pretraining to over 37,000 hours of heterogeneous embodied data, and introduces one-stage alignment training that jointly optimizes vision-language understanding and multi-embodiment action generation. Compared with the preceding GigaBrain-0 series and prior state-of-the-art models including $π_{0.5}$, GigaBrain-0.7 achieves substantial improvements in foundation zero-shot capabilities, language-conditioned instruction following, and post-training task success rates. In particular, on our in-house Maker H01 platform and mainstream robot embodiments, GigaBrain-0.7 demonstrates strong task adaptability and completion ability across both home and industrial scenarios. All training code and pretrained model weights will be released.

VLA具身智能世界模型Aug 16, 2026
ABot-N1: Toward a General Visual Language Navigation Foundation Model

ABot-N1: Toward a General Visual Language Navigation Foundation Model

ABot-N1 is a general visual-language navigation foundation model built on a slow-fast dual-system architecture: a 4B slow VLM reasoner emits explicit chain-of-thought plus dual pixel goals (Target Pixel + Affordance Pixel), while a 2B fast action expert decodes continuous SE(2) waypoints via QFormer action queries. The unified pixel-goal interface covers five tasks — point-goal, object-goal, POI-goal, instruction-following and person-following — in a single 30M-sample multi-task checkpoint, further aligned by GRPO post-training with format/target/safety rewards. Two closed-loop benchmarks are released (ABotN-PointBench and ABotN-POIBench). ABot-N1 sets new SOTA on all five benchmarks, boosting POI entrance arrival to 77.3% (+35.0 pp) and reaching 92.9%/95.4% outdoor/indoor point-goal SR, with full deployment on the TuTu quadruped running on a Jetson AGX Orin.

视觉语言导航VLN导航基础模型Jul 11, 2026
Zetta ζ: An Efficient Closed-Loop Embodied Harness for Self-Evolving Physical Intelligence

Zetta ζ: An Efficient Closed-Loop Embodied Harness for Self-Evolving Physical Intelligence

Zetta is a closed-loop embodied harness that keeps the base VLA frozen and evolves code-based runtime critics and recovery skills through three timescale-separated loops: action-frequency governance, rollout-batch failure diagnosis, and validation-gated skill updates. With the Z-Infra rollout infrastructure (20.6x throughput), it reaches 90.8% on LIBERO-Pro and 93.6% on RoboCasa, with zero-shot skill transfer and robotic Aha moments.

具身智能Embodied AIVLAAug 17, 2026