## Does Adding Force Feedback to a Pretrained VLA Policy Actually Work?
Yes — and a new framework called LIFT demonstrates it concretely. Researchers from a multi-institution team including authors affiliated with work led by Jun Lv, Chuan Wen, and Cewu Lu have published LIFT (Late Reactive Injection of Force for VLA Post-Training), a post-training framework that grafts contact reactivity onto a frozen or minimally modified [Vision-Language-Action Model](https://humanoidintel.ai/glossary/vision-language-action-model) without erasing the policy's general [dexterous manipulation](https://humanoidintel.ai/glossary/dexterous-manipulation) knowledge. The core mechanism: a reactive action expert trained alongside the original action expert, initialized from pretrained weights, and fed recent 6D [end-effector](https://humanoidintel.ai/glossary/end-effector) force readings through causal force memory and zero-initialized cross-attention. An online DAgger loop then closes the distribution-shift gap that pure offline training cannot address. Validated on towel folding, book insertion, and Hanoi ring placement, LIFT outperforms vision-only post-training on both learning speed and final task performance. For humanoid development teams betting on VLA backbones as their manipulation foundation, this matters: it suggests force can be bolted on late rather than baked in from scratch.
---
## The Core Problem: VLAs Are Functionally Blind Once Contact Occurs
Pretrained VLA policies have become a favored starting point for [Physical AI](https://humanoidintel.ai/glossary/physical-ai) deployments because they encode broad language-conditioned manipulation priors from large offline datasets. The problem is architectural and distributional: these models are vision-driven. Once a manipulation task enters a contact state — gripper occluded, depth signal ambiguous, surface compliance unknown — the visual stream degrades precisely when sensorimotor precision matters most.
The authors frame this precisely: "small force errors push execution off the offline demonstration distribution." This is not a marginal edge case. Book insertion, peg-in-hole, fabric manipulation, and the vast majority of assembly tasks that humanoid robots are being positioned to perform in industrial and domestic settings are fundamentally contact-rich. A policy that cannot react to contact forces is a policy that fails at the hard part.
The standard responses — collecting more demonstrations, training force-conditioned policies from scratch, or building custom architectures — all carry significant costs. More data collection is expensive and slow. Scratch training discards the generalization benefit that makes VLA pretraining valuable in the first place. Custom architectures require new hardware-software co-design cycles.
LIFT proposes a different answer: don't touch the pretrained policy's core; add a parallel reactive expert and teach it to respond to force while the original expert continues to provide task-level guidance.
---
## How LIFT Works: Architecture and Training
The LIFT architecture has three interlocking components, all described in the paper:
**1. Reactive Action Expert (parallel branch)**
LIFT grafts a second action expert beside the original. Critically, this expert is *initialized from the pretrained action weights* — not randomly initialized. This preserves the manipulation prior and avoids the cold-start problem where a new branch would need to relearn basic task structure from scratch.
**2. Causal Force Memory with Zero-Initialized Cross-Attention**
The reactive expert receives recent 6D end-effector force readings (three axes of force, three of torque) through a causal memory buffer. These force signals are injected via cross-attention that is zero-initialized, meaning at the start of post-training the reactive expert's output is identical to the pretrained policy's output. Force only begins modifying behavior as the new weights learn — a conservative initialization strategy that prevents catastrophic forgetting of pretrained knowledge.
**3. Online DAgger Loop**
This is arguably the most practically significant design choice. The authors identify that force feedback introduces a *policy-dependent* distribution shift: the contact states a policy visits during rollout depend on the policy itself, so offline data alone cannot cover the relevant contact regime. LIFT addresses this with an online DAgger loop that mixes offline task-alignment data with human-corrected online rollouts. The human corrector intervenes when the policy deviates, providing corrective labels under real contact conditions.
This three-part combination — parallel expert, causal force memory, and online correction — is what separates LIFT from simpler approaches like appending force as an extra input token to an existing VLA.
---
## Benchmarks: What the Results Actually Show
The paper validates LIFT on three tasks: towel folding, book insertion, and Hanoi ring placement. These are well-chosen. Towel folding involves compliant, deformable contact. Book insertion requires precise force-guided alignment into an occluded slot. Hanoi ring placement demands sequenced contact under constrained geometry.
The reported findings, grounded strictly in the paper's abstract and description:
- LIFT **learns faster** than vision-only post-training baselines across all three tasks
- LIFT **reaches higher final performance** than vision-only post-training
- Ablations confirm that both **reactive force memory** and **online corrective data** are necessary — removing either degrades performance, indicating neither is redundant
The paper does not report specific success-rate percentages or episode counts in the abstract, so those figures are not cited here. What the qualitative result establishes is a consistent directional advantage across task types that span rigid, deformable, and geometrically constrained contact regimes.
---
## Why This Matters for the Humanoid Stack
Every major humanoid program — whether building on transformer-based VLA policies like those emerging from [Physical Intelligence (π)](https://humanoidintel.ai/companies/physical-intelligence) or developing proprietary action models — faces the same tension: pretrained generalist policies versus contact-specialized controllers.
The current industry default is to handle contact-rich tasks with separate, hand-tuned impedance controllers or to treat force control as a hardware problem (stiffer or more [backdrivable](https://humanoidintel.ai/glossary/backdrivability) actuators, better torque sensing). LIFT suggests a third path: use the VLA backbone for task understanding and language grounding, and teach a grafted reactive module to handle the contact physics. This is a cleaner separation of concerns than retrofitting force into the VLA's primary attention stream.
The DAgger component deserves particular scrutiny. Online human correction is expensive at scale — it requires a human supervisor available during rollout, which limits throughput. However, LIFT's framing positions DAgger as a *post-training* tool rather than a production-time requirement. The expectation is that once the reactive expert is trained on a sufficient mixture of offline and corrected online data, it operates autonomously. Whether the corrected rollout budget required is practically tractable for real humanoid deployment pipelines will depend on task complexity and the quality of the pretrained VLA baseline.
The code and data release (committed but not yet live at time of publication) will be the real test of transferability. A framework that works on the authors' hardware configuration but requires significant re-engineering for different [end-effector](https://humanoidintel.ai/glossary/end-effector) geometries or force sensor integrations limits its value to the broader community.
---
## Skeptical Analysis: What Remains Unproven
Several questions the paper does not answer, based on the available abstract:
**Hardware scope:** The tasks are demonstrated on some robot platform, but the abstract does not specify the hardware. Whether LIFT generalizes to humanoid hands with distributed tactile sensing — as opposed to wrist-mounted 6-axis force-torque sensors — is unknown. Most deployed humanoids use wrist F/T sensors, but dexterous hands increasingly integrate fingertip sensing, which LIFT's 6D framing may not directly address.
**Sim-to-real applicability:** There is no mention of [sim-to-real transfer](https://humanoidintel.ai/glossary/sim-to-real-transfer) in the abstract. Contact dynamics are notoriously difficult to simulate accurately, which raises the question of whether LIFT's DAgger loop could be run in simulation to reduce real-world data collection costs.
**[Zero-shot generalization](https://humanoidintel.ai/glossary/zero-shot-generalization) to new contact tasks:** The ablations validate the components on the three training tasks. It is not established whether the reactive expert generalizes to contact regimes it was not corrected on.
**Compute cost of online DAgger:** The human correction requirement may be the binding constraint in practice. The paper's framing suggests it is modest, but without numbers, this cannot be assessed.
---
## Key Takeaways
- **LIFT** is a post-training framework that adds 6D force reactivity to pretrained VLA policies without discarding their general manipulation priors
- Architecture grafts a **parallel reactive action expert**, initialized from pretrained weights, using causal force memory and zero-initialized cross-attention
- An **online DAgger loop** mixing offline and human-corrected rollout data addresses the policy-dependent distribution shift that contact feedback introduces
- Validated on towel folding, book insertion, and Hanoi ring placement — LIFT outperforms vision-only post-training on both learning speed and final performance
- Ablations show **both** force memory and online corrective data are necessary; neither alone is sufficient
- For humanoid teams, this suggests force competence can be a **post-training add-on** to VLA backbones rather than a from-scratch architectural requirement
- Code and data will be publicly released, but hardware generalizability and sim-to-real applicability remain open questions
---
## Frequently Asked Questions
**What is LIFT in robotics?**
LIFT (Late Reactive Injection of Force for VLA Post-Training) is a post-training framework that adds contact force reactivity to pretrained vision-language-action policies. It grafts a parallel reactive action expert onto the original policy, feeding it 6D end-effector force data via causal memory and cross-attention, and uses an online DAgger loop to handle distribution shift from contact feedback.
**Why do VLA policies struggle with contact-rich manipulation?**
Pretrained VLA policies are primarily vision-driven. In contact states, visual information degrades — the scene may be occluded, depth becomes ambiguous, and small force errors push the policy into out-of-distribution regimes not covered by offline demonstrations. Without force feedback, the policy lacks the sensorimotor signal needed to react to contact.
**What is DAgger and why does LIFT use it?**
DAgger (Dataset Aggregation) is an [imitation learning](https://humanoidintel.ai/glossary/imitation-learning) algorithm that mixes offline demonstrations with human-corrected online rollouts. LIFT uses DAgger because force feedback creates a policy-dependent distribution shift — the contact states a policy encounters depend on the policy itself — which offline data alone cannot cover.
**Does LIFT require retraining the entire VLA from scratch?**
No. LIFT is explicitly designed as a post-training framework that preserves the pretrained VLA policy's general manipulation knowledge. The reactive expert is initialized from pretrained weights and added as a parallel branch, not a replacement.
**What tasks was LIFT tested on?**
The paper validates LIFT on towel folding, book insertion, and Hanoi ring placement — a set that spans deformable contact, force-guided alignment into occluded slots, and sequenced constrained geometry.
RESEARCH
LIFT Adds Force Sensing to VLA Policies via Post-Training
Published: July 17, 2026 at 24:00 EDTLast updated: July 17, 2026 at 07:32 EDTBy Alex Reiner, Senior EditorLast reviewed by Alex Reiner on July 17, 20269 min read
LIFT grafts 6D force feedback onto pretrained VLA policies using causal force memory and DAgger, without destroying general manipulation knowledge.
vlaforce-controlpost-trainingdaggercontact-rich-manipulationimitation-learning