Teahose.
SIGN IN
NEW HERE — WHAT TEAHOSE DOES
We read the entire AI & tech firehose — so you don't have to.
PODPodcastsAll-In, No Priors, Acquired…
NEWNewslettersStratechery, Newcomer…
PAPPapersPhysical AI research
PHProduct Huntdaily launches
VCInvestor ScoutSequoia, a16z, Benchmark…
CLAUDE DISTILLS →
7 reads, 30 sec each — free, 6 AM ET.
+ a live graph of the companies, people & themes underneath.
HOME/ARXIV PHYSICAL AI RESEARCH/TouchWorld: A Predictive and Rea…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

TouchWorld: A Predictive and Reactive Tactile Foundation Model for Dexterous Manipulation

DATE July 8, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS JIANYI ZHOU, SHUO YANG, ET AL. (ARXIV PHYSICAL AI)ARXIV 2607.07287
// KEY TAKEAWAYS5 ITEMS
  1. 01Hierarchical Timescale Separation is the Core Architectural Bet
  2. 02Touch as Prediction, Not Just Perception
  3. 03Perturbation Robustness as the Real Deployment Test
  4. 04Small Planner + Memory Beats Large Planner + Scale
  5. 05Human Tactile Pretraining as a Data Strategy
// SUMMARY

TL;DR: A team from Harbin Institute of Technology and PHANES AI has built the first manipulation policy that treats touch as both a predictor (anticipating what contact should feel like) and a corrector (fixing contact errors in real time). The result is a +15.7 percentage point improvement over the best existing robot policy on contact-rich dexterous tasks — and the gap widens to +18.5 points when a human actively tries to disrupt the robot mid-task.


1. Key Themes

Hierarchical Timescale Separation is the Core Architectural Bet

Most robot policies today shove everything — language reasoning, action generation, and tactile feedback — through a single model at a single control rate. TouchWorld's central argument is that this is the wrong abstraction. The system runs three loops at different speeds: a slow semantic planner (what subtask am I on?), an intermediate action generator (what should my hand do for the next 32 steps?), and a fast tactile corrector (am I slipping right now?).

"Slow semantic reasoning, intermediate action-chunk generation, and fast contact correction are forced to share the same model capacity and control loop. As a result, a policy may understand the task and produce plausible motions, yet still fail when stable grasping, force regulation, slip recovery, or precise insertion requires rapid tactile feedback." — Section 1

Touch as Prediction, Not Just Perception

The novel contribution here isn't just "we added a tactile sensor." It's that the system predicts what tactile data should look like before contact happens, then uses that prediction as a goal. The Tactile World Model generates a 17-frame visual-tactile clip showing the expected contact outcome for the current subtask. This predicted goal then conditions the action policy.

"The Tactile World Model provides the predictive component of the High-Level Planning Layer. Conditioned on the current observation and high-level state, it predicts future visual-tactile subgoals that describe the expected contact outcome of the current subtask." — Section 2.1

Quantitatively, this model outperforms naive baselines significantly: Temporal Contact Accuracy of 86.3% vs. 70.4% for simply copying the current tactile state forward (Table 2), with Contact IoU of 52.7% vs. 31.8%.

Perturbation Robustness as the Real Deployment Test

The paper evaluates not just clean task completion but performance under human perturbations — an operator actively displacing targets, interfering with grasps, or destabilizing contact during execution. This is the closest proxy for real-world deployment variability that appears in manipulation benchmarks.

"In the perturbation setting, the operator applies disturbances such as target displacement, unstable contact, or grasp interference during execution." — Section 4.1

TouchWorld hits 53.7% under perturbations vs. 35.2% for the strongest baseline (FTP-1), a +18.5 point gap. Critically, that gap is larger under perturbation than in the clean setting (+15.7 points), meaning the reactive layer is doing real work.

Small Planner + Memory Beats Large Planner + Scale

The paper tests whether you need a massive language model to do reliable subtask planning. A 4B parameter model fine-tuned with task-phase supervision and execution memory achieves 88% subtask accuracy and 65% downstream execution success — beating a zero-shot 32B model that scores only 69% subtask accuracy and 54% execution success.

"The memory-augmented 4B Subtask Planner outperforms the zero-shot 32B planner, suggesting that task-phase supervision and execution history are more important than model scale alone for this interface." — Section 4.6 (Table 3)

Human Tactile Pretraining as a Data Strategy

The Tactile World Model is pretrained on EgoTouch, a large-scale human interaction dataset with synchronized egocentric video and palm pressure maps, before being fine-tuned on 10 hours of robot demonstrations (~1.08 million frames at 30 FPS). This human-to-robot transfer via a shared image-form tactile representation is a practical answer to the robot data scarcity problem.

"This pretraining stage exposes the model to diverse human-object contact patterns and teaches a general visual-to-tactile dynamics prior before robot-specific policy training." — Section 3.2


2. Contrarian Perspectives

Bigger Vision-Language Models Are Not the Path to Contact Robustness

The dominant trend in robotics foundation models is scaling vision-language-action (VLA) models — more parameters, more data, better visual encoders. TouchWorld argues this misses the fundamental problem: contact failures are not caused by poor semantic understanding, they're caused by missing high-frequency physical feedback that no amount of visual reasoning can substitute.

"Vision and language provide semantic and geometric guidance, but they cannot reliably reveal hidden contact states such as force, slip, and contact stability." — Abstract

The evidence: GR00T N1.7, NVIDIA's generalist humanoid policy, scores only 39.3% average success in the clean setting — lower than FTP-1 (49.3%) and far below TouchWorld (65.0%) on Table 1. Generalist scale does not compensate for the absence of tactile architecture.

Residual Correction Is a Better Design Pattern Than End-to-End Training

The conventional wisdom in deep learning is that end-to-end training produces the best policies. TouchWorld argues the opposite for contact-rich manipulation: separate the fast and slow loops, train them with different supervision signals, and connect them at inference time.

"We do not back-propagate through the entire hierarchy end to end; instead, each module is first trained with the supervision signal that matches its time scale, and the final refinement stage couples the trained nominal VLA policy with the reactive tactile layer." — Section 3

The practical payoff: the Tactile Residual Transformer (TRT) only needs to learn a 58-dimensional correction subspace (wrist poses and selected hand joints), not the full 120-dimensional action space. This makes the fast loop cheaper, faster, and more stable to train.

Tactile Sensing Inputs Are More Important Than Any Single Policy Component

The ablation results in Figure 5 establish a clear hierarchy: removing tactile input entirely causes the largest performance drop across all tasks and conditions — more than removing the subtask planner, the tactile world model, or the refinement policy individually.

"Removing tactile input causes the largest degradation, confirming that contact observations are essential for this benchmark." — Section 4.4

This is a challenge to teams building dexterous manipulation on vision-only platforms. It suggests that hardware sensor investment (tactile gloves, fingertip sensors) may have higher ROI than further scaling of vision encoders for contact-rich tasks.


3. Companies Identified

Physical Intelligence (π), Description: Developer of general-purpose robot foundation models (π0, π0.5, π0.6, π0.7 series). Why relevant: Pi-0.5 is used as a direct baseline and scores 40.7% average success in the clean setting vs. TouchWorld's 65.0%. The paper frames TouchWorld as an extension of the VLA paradigm that Physical Intelligence pioneered, not a replacement. Quote: "Pi-0.5: a vision-language-action policy baseline evaluated with the same task instructions and visual observations." — Section 4.2 / Table 1.

NVIDIA, Description: Developer of GR00T N1, an open foundation model for generalist humanoid robots. Why relevant: GR00T N1.7 is used as a direct baseline and scores 39.3% in the clean setting and 26.0% under perturbation — the weakest of the three baselines. Represents the "scale generalist policy" approach that TouchWorld argues is insufficient for contact-rich tasks. Quote: "GR00T N1.7: a generalist robot policy baseline evaluated on the same real-robot task suite." — Section 4.2 / Table 1.

PHANES AI, Description: The industrial/research lab co-authoring this work alongside Harbin Institute of Technology. Why relevant: This appears to be the commercialization vehicle for TouchWorld. The project page is hosted at phanes-lab.github.io, suggesting active productization. All authors are affiliated with either HIT Shenzhen or PHANES AI. Quote: Author affiliations list both "Harbin Institute of Technology, Shenzhen" and "PHANES AI." — Author list.

Wuji (manufacturer of dexterous hands and gloves), Description: Hardware provider of the dexterous robot hands and teleoperation gloves used in the TouchWorld platform. Why relevant: The entire hardware stack — robot hands, teleoperation interface, and data export pipeline — is built on Wuji hardware. Any team trying to replicate or build on TouchWorld will need to engage with this hardware ecosystem. Quote: "On the robot side, a humanoid platform equipped with Wuji dexterous hands executes the manipulation policy, while a JQ-Industries tactile glove mounted on the hand provides contact observations." — Section 4.1; "The Wuji data pipeline exports teleoperated trajectories for the evaluated tasks." — Section 4.1.

JQ-Industries, Description: Manufacturer of the tactile glove used for contact sensing in the TouchWorld platform. Why relevant: The specific sensor modality — a tactile pressure glove — is the primary sensing input for both the refinement policy and the world model. Hardware selection here directly shapes what tactile representations are learnable. Quote: "A JQ-Industries tactile glove mounted on the hand provides contact observations for tactile-conditioned action generation and refinement." — Section 4.1.

Meta, Description: Provider of the Quest VR headset and Touch Plus controllers used for teleoperation data collection. Why relevant: The data collection pipeline depends on Meta hardware for operator immersion and hand-motion input. This is relevant for any team trying to scale demonstrations using similar setups. Quote: "The demonstrator wears a Meta Quest headset for immersive visual feedback and uses Meta Quest Touch Plus controllers together with a Wuji Glove to provide hand-motion commands." — Section 4.1.


4. People Identified

Shuo Yang, Lab/Institution: Harbin Institute of Technology, Shenzhen / PHANES AI. Why notable: Corresponding author and apparent PI behind this research direction. Also co-author on related work including TouchAnything (bimanual tactile estimation from egocentric video) and ConLA (contrastive latent action learning from human videos). Building a coherent research program around tactile and egocentric sensing for dexterous manipulation. Quote: Listed as corresponding author (shuoyang@hit.edu.cn) with ✉ notation in author list.

Jianyi Zhou, Lab/Institution: Harbin Institute of Technology, Shenzhen / PHANES AI. Why notable: Equal-contribution first author. Also first author on TouchAnything (arXiv:2605.13083), a dataset for bimanual tactile estimation from egocentric video that feeds directly into TouchWorld's pretraining pipeline. Appears to be the core technical lead on tactile representation and data infrastructure. Quote: Listed with [*] equal contribution notation; referenced in Section 3.2 via the EgoTouch citation [34] which links to arXiv:2605.13083.

Feiyang Hong, Yunhao Li, Yicheng Zhao, Lab/Institution: Harbin Institute of Technology, Shenzhen / PHANES AI. Why notable: Equal-contribution first authors alongside Zhou. The equal-contribution team of four suggests this is a well-resourced, parallel-execution research team rather than a single lead with supporting authors. Quote: Listed with [*] equal contribution notation in author list.


5. Operating Insights

The Fast Feedback Loop Needs Its Own Model — Don't Bolt It Onto Your VLA

If you're building a dexterous manipulation system today and relying on your main policy to handle slip recovery and contact correction, you're structurally bottlenecked. The core finding here is that a separate, lightweight residual model (TRT: d_model=512, 8 layers) operating at a faster rate than the main policy is what delivers perturbation robustness. The nominal VLA policy commits to 32-step action chunks, but the TRT refreshes corrections every 4 steps using a 16-step lookahead window.

"A Tactile-Conditioned Refinement Policy refreshes local residual corrections inside the robot control loop using recent tactile and proprioceptive histories." — Section 1

Practically: when speccing your control architecture, plan for at least two execution rates — a slow semantic/action-chunk loop and a fast contact-correction loop. The hardware implications are real: you need a tactile sensor with low enough latency to feed that fast loop meaningfully.

Subtask-Conditioned Policies Outperform Raw Instruction-Conditioned Policies on Long-Horizon Tasks — but Only With Memory

The ablation data (Table 3) shows that zero-shot subtask planning with a large model (32B, 69% subtask accuracy) is worse than fine-tuned planning with a small model plus memory (4B, 88% accuracy). The key variable isn't model size — it's whether the planner has access to execution history to track phase transitions.

"Subtask Planner memory further improves phase-transition consistency. The memory-augmented 4B Subtask Planner outperforms the zero-shot 32B planner, suggesting that task-phase supervision and execution history are more important than model scale alone for this interface." — Section 4.6

For teams deploying long-horizon manipulation (assembly, multi-step household tasks, surgical assistance): invest in building a lightweight planner with task-phase annotations and execution-state memory rather than defaulting to a large zero-shot LLM. 128,866 supervision records at the semantic update rate were sufficient to train the 4B planner used here — a tractable data collection target.


6. Overlooked Insights

The 58-Dimensional Residual Subspace Is a Hidden Design Decision With Large Implications

The TRT doesn't correct all 120 dimensions of the robot's action space. It only operates on a carefully chosen 58-dimensional subspace: two 48-dimensional wrist pose blocks and selected hand joints. The remaining action dimensions (head, reserved channels) pass through unchanged from the nominal VLA.

"The nominal VLA still produces the full 120-dimensional action, but the residual layer is trained only on a 58-dimensional tactile-sensitive action subspace covering the two wrist pose blocks and selected hand joints. The predicted residual is scattered back into the 120-dimensional action vector, while the remaining action dimensions are kept from the nominal VLA output." — Section 8

This is architecturally significant and underemphasized in the main paper. It means the team made an explicit prior judgment about which degrees of freedom are contact-sensitive. For teams replicating this on different hardware (different DOF counts, different hand morphologies), identifying the correct tactile-sensitive subspace is a non-trivial engineering problem. Getting it wrong could cause the residual layer to either under-correct (too narrow a subspace) or destabilize the nominal policy (too wide a subspace).

The Scheduling Hyperparameters Are a Known Fragility — and the Paper Offers No Adaptive Solution

The entire multi-rate architecture depends on four scheduling parameters: the High-Level Planning Layer update rate, the Tactile World Model refresh rule, the nominal chunk length (H=32), and the residual commit interval (C=4). The paper explicitly acknowledges this is a fixed profile tuned for the six test tasks.

"We use a fixed scheduling profile in this work, which worked well for our tasks. More adaptive scheduling could further reduce computation and improve responsiveness when contact dynamics change rapidly." — Section 5

This is the most underappreciated deployment risk in the paper. A fixed scheduling profile means the system's reactivity is calibrated to the contact dynamics of watering, wiping, and insertion tasks. Deploy it on a task with faster contact transients (e.g., high-speed assembly, impacts) and the C=4 commit interval may be too slow; on tasks with very slow contact evolution, the TRT may introduce unnecessary corrections. Any team productizing this architecture needs an adaptive scheduling mechanism — and that mechanism doesn't exist yet.