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/Never Too Late for Force: Accele…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

Never Too Late for Force: Accelerating VLA Post-Training with Reactive Force Injection

DATE July 15, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS YI WANG, CEWU LU, ET AL. (ARXIV PHYSICAL AI)ARXIV 2607.14236
// SUMMARY

1. Key Themes

Force Sensing as a Post-Training Add-On, Not a Pretraining Requirement

The core contribution is demonstrating that force/torque sensing — long considered a hardware-specific, hard-to-scale modality — can be grafted onto an existing pretrained VLA (specifically Physical Intelligence's π0.5) without retraining the foundation model. LIFT copies the pretrained action expert's weights into a new "reactive action expert," adds a zero-initialized cross-attention layer for force input, and starts training from a state that is mathematically output-equivalent to the original model. As the paper states in Section 3.2: "LIFT copies the original action parameters into the reactive action expert, uses shifted causal attention, and adds zero-initialized cross attention so the network starts output-equivalent to the original VLA." This means companies deploying VLAs on specific robot platforms can add force reactivity as a lightweight adaptation step rather than rebuilding their model stack.

Reactive Force Memory Beats Single-Frame Force Input

A critical finding is that how force is injected matters as much as whether it's injected. LIFT encodes recent 6D force/torque history through a causal GRU and injects it via cross-attention with a latency-aligned causal mask, enabling within-chunk action updates as new contact events arrive. The ablation in Section 4.3 shows that single-frame force input (LIFT w/o Reactive Force Injection) degrades severely on Hanoi ring placement, dropping from a peak of 0.5 to 0.0, while full LIFT maintains 0.6. The paper explains: "Single-frame force is easily misled by instantaneous noise or out-of-distribution impact forces. LIFT makes the policy reactive by averaging this decision over a short force memory window." For operators, this means transient force spikes (common in real contact) won't destabilize the policy if the architecture has temporal force context.

Online Human Correction (DAgger) Is Essential for Force-Aware Policies

The paper shows that offline-only force post-training fails catastrophically. On book insertion, "LIFT w/o Online DAgger underperforms on all three tasks and falls to zero on book insertion" (Section 4.5). The reason is that force distributions are highly policy-dependent: "offline data miss abrupt force-pattern changes during real execution, while online DAgger adds corrections on the learner's failure states." This has direct implications for deployment strategy — companies cannot simply collect a force dataset and train offline; they need a human-in-the-loop correction pipeline during deployment to capture the force states their specific policy actually encounters.

Force Accelerates Learning, Not Just Final Performance

Across all three tasks, force-aware post-training reaches higher peak performance with fewer samples. On towel folding, LIFT reaches 0.65 with 2.3K samples while vision-only DAgger needs 3.1K samples to reach 0.725 (Section 4.2, Figure 5). On Hanoi ring placement, LIFT reaches 0.6 at 1.7K samples while vision-only peaks at 0.3 at 1.4K. This means force feedback reduces the total human correction burden — a direct cost saving for deployment.


2. Contrarian Perspectives

You Don't Need Force During Pretraining — Adding It Late Is Better

Most force-aware robotics research (ForceVLA, TA-VLA, ForceMimic) integrates force throughout training. LIFT argues the opposite: force should be added late, after the VLA has already learned general manipulation from vision. The reasoning in Section 1 is pragmatic: "force and torque are harder to include during pretraining at scale because they are costly to collect, depend on robot platform and end-effector hardware, and vary across setups." By keeping force out of pretraining, you preserve the ability to train on massive vision-only datasets and then adapt to whatever specific force sensor a deployment robot happens to have. This challenges the assumption that multimodal foundation models need all modalities baked in from the start.

Position Control Is Sufficient — You Don't Need Force-Position Hybrid Control

Many contact-rich manipulation systems use hybrid force-position control at the controller level. LIFT explicitly keeps the deployed controller position-based: "we post-train a general VLA backbone, inject force through zero-initialized cross attention rather than a residual action head, and keep the deployed controller position-based" (Appendix A). The robot operates in position-control mode at 10 Hz with its internal impedance controller handling tracking (Appendix D). This means companies don't need to redesign their control stack to get force-aware behavior — the policy learns to use force information to generate better position commands, rather than requiring the controller itself to switch between force and position modes.

Single-Frame Force Feedback Can Be Actively Harmful

The paper provides evidence that naive force injection is worse than no force injection in some cases. On Hanoi ring placement, the single-frame force baseline peaks at 0.5 but then collapses to 0.0 and 0.1 in later checkpoints (Section 4.3). The paper explains: "an abnormal force spike can drive the policy into unstable motions, including oscillating forward and backward, losing localization, or moving far away from the placement region." This contradicts the common assumption that any force feedback is better than none — poorly structured force input can destabilize a policy.


3. Companies Identified

Physical Intelligence (π0.5) — Developer of the π0 and π0.5 VLA foundation models used as the pretrained backbone. LIFT is built directly on π0.5, making it the base model whose capabilities are preserved and extended. The paper references it as "pretrained π0.5" throughout (Sections 3.1, 3.2, 4.1). Relevant because LIFT demonstrates a concrete post-training pathway for Physical Intelligence's models to gain force awareness — potentially a differentiator for deployment in contact-rich industrial tasks.

Flexiv Robotics — Manufacturer of the Flexiv Rizon 4S robot arm and Flexiv TDK teleoperation kit used for all experiments. The paper uses the Rizon 4S's built-in 6D end-effector F/T sensor (Appendix D) and the TDK bilateral master-follower setup for force-feedback demonstrations. Relevant because Flexiv's integrated force sensing and teleoperation ecosystem is validated as a complete deployment stack for force-aware VLA post-training.

Robotiq — Manufacturer of the 2F-85 parallel-jaw gripper used on the robot (Appendix D). Relevant as a standard end-effector in the experimental setup.

Apple — iPhone used as the wrist-mounted camera for RGB image capture at 10 Hz, and as the handheld data-collection device for stage-one vision-only demonstrations using ARKit SLAM for pose estimation (Appendix D, Appendix E). Relevant because it demonstrates that commodity mobile hardware can serve as the primary visual sensing and data-collection platform for VLA post-training.

NVIDIA — A800 GPUs used for training (8-GPU node, Appendix K). Relevant as the compute infrastructure.


4. People Identified

Yi Wang — Shanghai Jiao Tong University / Shanghai Innovation Institute. Co-first author. Part of the SJTU robotics group that has produced multiple recent force-aware manipulation papers (FoAR, ForceMimic, RDP, ImplicitRDP).

Wendi Chen — Shanghai Jiao Tong University / Shanghai Innovation Institute. Co-first author and project lead. Also an author on ImplicitRDP and RoboPocket, indicating sustained work on force-aware policies and online post-training infrastructure.

Cewu Lu — Shanghai Jiao Tong University / Shanghai Innovation Institute / Noematrix Ltd. Co-advisor. A highly prolific researcher in the Physical AI space whose lab has produced an extraordinary density of recent force-aware manipulation work (FoAR, ForceMimic, RDP, ImplicitRDP, Force Policy, FTP-1, VTAM). His group appears to be one of the most active globally in bridging VLAs with force/tactile sensing. Also affiliated with Noematrix Ltd., suggesting commercialization activity.

Chuan Wen — Shanghai Jiao Tong University. Co-advisor. Co-author on multiple recent force-aware and online post-training papers from the same group.

Jun Lv — Shanghai Jiao Tong University / Noematrix Ltd. Author, also affiliated with Noematrix, suggesting involvement in commercialization of this research line.


5. Operating Insights

Design Your Data Pipeline for Two Stages: Vision-First, Force-Second

The paper's two-stage pipeline is operationally pragmatic. Stage 1 uses a cheap handheld device (iPhone + gripper, no force sensor) to collect abundant vision-only task-alignment data. Stage 2 switches to the real robot with force sensing and collects online corrections via DAgger. The key insight from Section 3.3 is that both data sources are trained simultaneously with a 1:1 mixture, using selective force masking so vision-only batches don't update the force encoder. This means you can start collecting useful task data immediately with commodity hardware before your force-equipped robot is even set up, and the two data streams remain compatible throughout training.

Cache the Vision-Language Prefix to Enable Real-Time Force Reactivity

A practical deployment insight from Section 3.1.3: the expensive vision-language forward pass is computed once per action chunk and cached, while the force-injected reactive action updates run within each chunk at low cost. The paper states: "Because the expensive vision-language prefix is reused, each refresh can update the reactive action chunk with newly observed contact transients without waiting for a full vision-language forward pass." For CTOs, this means force reactivity doesn't require sacrificing the inference latency of your VLA — the architecture is designed so that force updates piggyback on cached vision-language computation. The latency-alignment offset (set to 3 in Table 1) ensures the policy only uses force measurements that will actually be available when inference completes, avoiding stale or future-leaking data.

Budget for Human-in-the-Loop Correction During Deployment

The paper is explicit that online DAgger with human corrections is not optional — it's architecturally necessary because force distributions shift sharply once the policy deviates from offline states. Section 4.5 shows offline-only force training falls to zero on book insertion. The online DAgger protocol (Appendix H) involves an operator monitoring every rollout and triggering resets when the policy stalls, force exceeds safety thresholds, or episodes time out. Checkpoints are synced every 100 training steps. For deployment planning, this means you need teleoperation infrastructure (the paper uses Flexiv TDK's bilateral master-follower with force feedback), a cloud training loop, and human operators available during the post-training phase — but the total correction volume is modest (1.7K–5.6K samples across tasks).


6. Overlooked Insights

The Force Encoder Is Surprisingly Lightweight

The entire force processing path is a single-layer causal GRU with hidden width 512 followed by a linear projection to 1024 dimensions (Table 1, Appendix B). The 6D wrench (fx, fy, fz, τx, τy, τz) is downsampled from 1000+ Hz to 10 Hz. This is a trivially small module compared to the VLA backbone — meaning the marginal parameter cost of adding force awareness is negligible. For companies, this suggests that force-aware post-training is computationally cheap to add to existing VLA deployments; the cost is in data collection (human corrections), not in model complexity or compute.

Generalization Is Preserved Under Visual Distribution Shift

Figure 6 and Appendix I show that the final LIFT checkpoint maintains performance under object substitution (blue towel, gray book), tablecloth changes, and purple lighting — despite the model being post-trained with force on a specific setup. The paper notes: "Figure 6 shows no clear drop for LIFT on most tested settings across the three tasks." This is a strong signal that the zero-initialized cross-attention and weight-copying initialization strategy genuinely protects the pretrained VLA's visual generalization. For investors evaluating force-aware VLA companies, the question to ask is whether their approach preserves generalization or trades it for contact performance — LIFT provides evidence that this tradeoff can be avoided.