🐚 The World of Visuo-Tactile World Models
Visuo-Tactile World Models (VT-WMs) were introduced by Meta AI in early 2026 or rather: they pioneered the "scalable, multi-task" space (before there were niche world models including tactile data) [1]. The team's motivation came from the problems of vision-only models for scenarios where robots needed to engage in contact-rich tasks, for example when the camera got occluded or when objects were moved violating basic physics because the vision model hallucinated.
- Meta's VT-WM is defined by three basic layers: the vision and tactile encoders and the autoregressive predictor.
- Vision tokens and tactile tokens are concatenated along the spatial dimension into a unified sequence.
- Actions condition the model via cross-attention after each self-attention block.
- The training loss combines teacher forcing, i.e. predicting the next step from ground truth, with a sampling loss, i.e predicted from the model's own autoregressive rollouts, to prevent distribution shift during long rollouts.
- The Cross-Entropy Method (CEM) is central in the paper for planning: action sequences are sampled, rolled out in imagination, scored against a goal with the best getting selected at the end. However, tactile improves planning indirectly by making the world model's predictions more physically grounded. The goal is only specified in vision.
One of the works who sought to (indirectly) build on Meta's original VT-WM is the OmniVTA paper by Zheng et al [2]. OmniVTA is a framework, within which a world model based on a large VTA dataset was trained, coupled together with a tactile encoder, a fusion policy for action generation and a 60Hz reflexive controller to correct deviations signals in a loop. The study emphasizes the lack of visuo-tactile manipulation datasets and strive to integrate tactile information not as auxiliary but to "model the evolution of contact dynamics explicitly", as is per neuroscience research into the human response systems (referring specifically to the fact that human sensorimotor control is both feedforward through predictive modeling and reliant on tactile feedback for closed-loop correction).
- The framework is multi-sensor, including working with the GelSight Mini. It treats tactile data as a 3D displacement field, i.e. how the gel surface deforms, rather than just a flat image.
- VTA is an acronym for Vision-Tactile-Action, the concept of integrating RGB-D camera data, touch signals and control commands executed by the robot as three distinct data streams.
-
Tactile VAE is the so-called perception layer. It takes raw, high dimensional data and compresses it into low-dimensional representations through a spatio-temporal encoder, using 3D causal convolutions. Being "causal" (the causal kernels) means it only looks at the past and present, never the future, so it can run in real-time. Tactile VAE also uses Implicit Neural Representation (INR) as an implicit deformation decoder for the robot to be able to query the exact 3D deformation at any coordinate.
- By inputting a spatial coordinate and a latent code , the model predicts the continuous deformation at that specific point.
-
INR is important as it allows the model to treat gel as a continuous physical surface as opposed to being limited by the discreteness of the pixel resolution of the sensor. This is primarily done during training. During inference, the low-dimensional representations produced by the encoder are the primary pieces of information passed to the next modules.
-
The Visuo-Tactile World Model is the prediction layer. Having two separate paths, one for video and one for touch, it deploys a Diffusion Transformer (DiT) mechanism to create frames of the predicted tactile and visual states. The multi-model conditioner takes the current video, touch and desired action to be taken by the robot as conditions for the prediction of the states. The model uses projected 2D actions as the primary conditioning for the action, as the researchers found this generalizes better than raw 3D coordinates. During training, a weight map is used to force the model to be more accurate during high-intensity contact moments, i.e. the dynamic-aware loss concept.
-
The adaptive visuo-tactile fusion policy is where the decision process over the next robot's action takes place. Here, instead of processing tactile signals as static snapshots, the Latent Tactile Differential (LTD) encoder captures the first-order time derivative of the tactile state. It performs channel-wise concatenation of three distinct vectors:
- : The encoded latent representation of the immediate observed state.
- : The temporally aggregated future state generated by the World Model.
- : The explicitly computed delta between expectation and observation.
-
The differential term tells the robot if a contact event is about to happen.
-
There is also a gating mechanism involved. First, an MLP classifies the likelihood of physical interaction by thresholding tactile deformation magnitudes. Then, the gating network outputs normalized scalar weights (tactile) and (visual), where . The final state representation is a weighted combination given by . When the robot's end-effector obscures the target object and visual occlusion takes place, the gating network shifts the policy's dependence toward the tactile manifold to maintain stable control.
-
To ensure the action trajectory is smooth and physically consistent, it's treated as a joint probability distribution over a short time horizon .
-
The reflexive latent tactile controller is the reflex layer, operating at 60Hz, much faster than the 4Hz planner, to handle emergencies. This module bridges the gap between feedforward planning (what's known as the Slow Policy) and real-time execution (Fast Policy). It constantly checks the real-time touch feedback. It compares the real touch to the predicted touch from the world model by using Nearest-Neighbor Interpolation to upsample the predicted tactile latents (as the world model operates at a lower frequency). If they don't match (e.g., the robot missed the object or hit it too hard), it calculates a Refined Action to fix the mistake as fast as possible.
-
The final command sent to the robot to be executed is the sum of the planner's goal and the reflex's correction: .
The DreamTacVLA was an attempt to include tactile sensing into Vision-Language-Action (VLA) models, because these are completely blind to physical contact (*it is similar to Meta's VT-WM, but here the world model is a module inside a VLA, rather than the whole system).
- High-resolution GelSight tactile images are spatially aligned with wrist-camera and third-person camera views, so the model learns that what the tactile sensor sees corresponds to a specific location in what the camera sees
- They also trained a latent tactile world model to predict future tactile states (the so-called dreaming part).
- The model drafts an action from vision, predicts what touch will feel like, then refines the action based on the predicted contact.
VTAM originated from a Video-Action Model where contact-rich tasks fail to be dealt with properly because force and contact transitions aren't visible in pixels.
- They augmented a pretrained video transformer with tactile streams via lightweight modality transfer finetuning.
Honourable Mentions:
-
AnyTouch, which is a representation learning framework, not a world model.
- It takes tactile images from multiple sensor types (like GelSight, DIGIT, DuraGel, Tac3D) and maps them into a shared embedding space using contrastive learning and masked autoencoders.
- The goal is a universal tactile encoder that works regardless of which sensor you're using.
- No future predictions. Just perception basically.
-
HapticVLA is built on the idea that you can use tactile data during training to teach a VLA model about contact physics, but during inference you don't need the tactile sensor at all.
References
[1] C. Higuera, S. Arnaud, B. Boots, M. Mukadam, F. R. Hogan, and F. Meier, "Visuo-tactile world models," arXiv preprint arXiv:2602.06001, 2026.
[2] Y. Zheng, S. Gu, W. Li, Y. Zheng, Y. Zang, S. Tian, X. Li, C. Hao, C. Gao, S. Liu, H. Li, Y. Chen, S. Yan, and W. Ding, "OmniVTA: Visuo-tactile world modeling for contact-rich robotic manipulation," arXiv preprint arXiv:2603.19201, 2026.
