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/IMPACT: Learning Internal-Model…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

IMPACT: Learning Internal-Model Predictive Control for Forceful Robotic Manipulation

DATE June 9, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS JIAWEI GAO, YILUN DU, ET AL. (ARXIV PHYSICAL AI)ARXIV 2606.10818
// KEY TAKEAWAYS5 ITEMS
  1. 01No Force Sensor Required for Robust Force Control
  2. 02Trained on One Weight, Deployed Across All Weights
  3. 03Data Augmentation Is Not the Answer to Physics Variation
  4. 04Online Adaptation with a "Surprise Gate"
  5. 05Cerebellum-Inspired Architecture as a Systems Design Principle
// SUMMARY

TL;DR: Harvard researchers built a controller that lets robots trained on lightweight objects immediately handle much heavier ones — without force/torque sensors, without retraining, and without extra demonstrations. It learns physics on the fly, the way the human cerebellum does.


1. Key Themes

No Force Sensor Required for Robust Force Control

The dominant industry approach to forceful manipulation requires wrist-mounted force/torque sensors — expensive, fragile hardware that adds cost and failure modes. IMPACT estimates external forces purely from the robot's existing joint torque readings and its known kinematic model. As the authors state in Section 1: "rather than explicitly measuring interaction forces with mounted force-torque sensors, we use joint torque readings and the manipulator equation to estimate interaction forces." This means any robot with joint torque sensing (standard on modern arms like Franka FR3) can implement this — no additional hardware procurement.

Trained on One Weight, Deployed Across All Weights

The headline result: IMPACT was trained exclusively on 2.5 kg dumbbell demonstrations, yet achieved 21/25 (84%) success on a 5 kg dumbbell it had never seen during training. The vanilla diffusion policy baseline, trained on the same 2.5 kg data, scored 0/25 on the heavier object (Table 1, Section 3.2). In simulation, IMPACT "maintains high success rates across the entire evaluated mass range" from 0–10 kg, while baselines trained on data spanning 0.1–8 kg still collapsed above 8 kg (Section 3.2). For operators deploying robots in variable-payload environments — warehouses, food production, construction — this is the core value proposition.

Data Augmentation Is Not the Answer to Physics Variation

A critical finding buried in the benchmarking: collecting demonstrations across a wide range of object masses (Augmented DP) does not solve the generalization problem. As shown in Figure 5 and described in Section 3.2: "Augmented DP improves robustness relative to the vanilla baseline by training on a wider range of masses, but its success rate still drops at higher masses, especially when the mass is outside the training distribution (e.g., >8 kg)." More data collection is expensive and still fails at the edges. IMPACT outperforms Augmented DP despite never seeing varied masses during training — because it models physics rather than memorizing trajectories.

Online Adaptation with a "Surprise Gate" — No Human in the Loop

IMPACT includes an online learning mechanism that activates only when its predictions deviate significantly from measured forces (the "surprise gate"), then freezes once converged. This means the robot self-updates its internal physics model mid-task without human intervention. From Section 3.3: "When the dumbbell is switched to 5 kg without any prior information, the internal model's internal dynamics representation still remains the case of 2.5 kg, which leads to a significant increase in the prediction error of the external load. Thus, the surprise gate reactivates, allowing the internal model to rapidly update its predictions." This is autonomous runtime adaptation — a key property for unstructured deployment environments.

Cerebellum-Inspired Architecture as a Systems Design Principle

The architecture decouples high-level task planning (what to do) from low-level force compensation (how to do it physically). The imitation learning policy handles goal-directed motion; the internal model controller handles physics. From Section 1: "the cerebellum builds internal models of the body and external objects based on prior experience, and utilizes these models to generate appropriate feedforward forces to counteract predictable disturbances such as object gravity." This separation means the policy doesn't need to "know" object mass — the controller figures it out. Policy training stays simple; robustness comes from the controller layer.


2. Contrarian Perspectives

More Demonstrations Won't Fix Force Generalization — Better Control Architecture Will

The conventional approach in robotics ML labs facing force generalization failures is to collect more diverse data. IMPACT directly refutes this. From Section 3.2: "IMPACT achieves better performance than Augmented DP despite having no prior exposure to varied object masses during training, indicating that explicitly modeling and compensating for payload dynamics leads to better generalization than relying solely on increased data diversity." The implication for teams burning GPU hours and teleoperation budget on mass-diverse datasets: the marginal return is low, and they're solving the wrong problem. The fix is architectural, not data-scale.

Force/Torque Sensors at the Wrist Are Unnecessary Complexity

Most contact-rich manipulation research treats wrist-mounted F/T sensors as a prerequisite for force-aware control. IMPACT argues this creates system complexity without being necessary. Section 1 notes that explicit sensor-based approaches "require accurate force–torque sensors mounted at the robot's wrist, increasing system complexity." By instead computing a torque residual — measured joint torques minus model-predicted joint torques — the system estimates end-effector wrenches without any additional hardware. Teams designing robot systems for scale should reconsider whether F/T sensors are load-bearing in their architecture or just a habit inherited from classical robotics.

Implicit Force Control Through Imitation Learning Is Fundamentally Brittle

A large fraction of deployed robot learning systems today handle forceful tasks implicitly: the policy overshoots its target pose, and the impedance controller converts the tracking error into force. IMPACT's framing in Section 1 identifies why this breaks: "the policy must learn to overshoot and create a steady-state end-effector tracking error to compensate for the object gravity. This approach not only makes the learning problem more difficult, requiring substantially more data, but also leads to poor generalization to out-of-distribution object properties." Teams shipping visuomotor policies for manipulation tasks involving variable payloads — logistics robots, assistive robots, food handling — are building on a foundation that will fail predictably as payload variance increases.


3. Companies Identified

Franka Robotics (now part of Agile Robots) Description: German manufacturer of the Panda/FR3 collaborative robot arm. Why relevant: IMPACT's real-world experiments are conducted exclusively on the Franka FR3 (Section 3.1). The FR3's joint torque sensing capability is what makes IMPACT's wrench estimation possible without additional hardware. The paper's results are directly reproducible on this platform by any team already using Franka hardware. Quote: "We conduct real-world experiments using a 7-DOF Franka FR3 manipulator operating in a tabletop workspace monitored by two fixed-base RGB-D cameras." (Section 3.1)

Nintendo (peripheral reference) Description: Consumer electronics company. Why relevant: The teleoperation interface used to collect training demonstrations is a Nintendo Switch Joy-Con. Section 3.1 notes: "We use a Nintendo Switch Joy-Con to teleoperate the Franka FR3 robot to pick up dumbbells weighing 2.5 kg and 5 kg." This is a signal about low-cost, accessible data collection pipelines — relevant for any team thinking about scaling demonstration collection without specialized teleoperation hardware.


4. People Identified

Jiawei Gao Lab/Institution: Harvard University (lead author) Why notable: First author with prior work on multi-robot coordination using internal model architectures (cited as [15] in the paper — CooHOI at NeurIPS 2024). Building a coherent research thread around cerebellum-inspired control for physical AI. Quote: Lead author on IMPACT; prior NeurIPS 2024 work on "learning cooperative human-object interaction with manipulated object dynamics" (Reference [15]).

Yilun Du Lab/Institution: Harvard University (senior/corresponding author) Why notable: Du is an emerging force in robot learning, with connections to diffusion policy work (co-authored with Chi et al.) and broader generative model applications to robotics. His group is pushing the boundary of combining learned policies with principled control theory — a rare combination. Appears on multiple cited works including multi-modal manipulation ([6]) and flexible multitask learning ([33]). Quote: Senior author on IMPACT; co-author on "Multi-modal manipulation via multi-modal policy consensus" (Reference [6]) and "Flexible multitask learning with factorized diffusion policy" (Reference [33]).

Chaoqi Liu, Peilin Wu, Haonan Chen (Stanford/Harvard) Lab/Institution: Harvard University; Haonan Chen also affiliated with Stanford University Why notable: Chen's dual Harvard-Stanford affiliation suggests cross-institutional collaboration networks worth tracking. This team is positioned at the intersection of neuroscience-inspired control and practical robot learning. Quote: "1 Harvard University, 2 Stanford University" (Paper header).


5. Operating Insights

Do Not Couple Payload Adaptation to Policy Retraining

If your robot needs to handle objects of different weights or dynamic properties, and your current solution is to collect new demonstrations and retrain — you are paying a recurring tax that IMPACT's architecture eliminates. The internal model updates online at runtime using only joint torque measurements that your robot already has. From Table 1: a policy trained only on 2.5 kg data achieves 84% on 5 kg objects with IMPACT, versus 0% with standard diffusion policy. For CTOs evaluating deployment cost: the correct question is not "how many more demonstrations do we need for the heavier SKU?" but "does our controller architecture separate task learning from physics adaptation?"

Run Your Controller at 1000 Hz, Your Policy at 30 Hz

IMPACT's architecture explicitly separates control loop frequencies: policy inference runs at 30 Hz (standard for visuomotor policies), while the impedance controller and internal model compensation run at 1000 Hz (Table 2, Appendix A.1). The feedforward wrench compensation happens at the fast control loop, meaning the system can respond to unexpected loads within milliseconds. Teams running monolithic policy-to-torque pipelines at low frequency are leaving response bandwidth on the table for contact-rich tasks. This two-timescale architecture is a deployable systems pattern, not just a research choice.


6. Overlooked Insights

The "Surprise Gate" Threshold Is a Tunable Safety Parameter

Buried in Table 2 (Appendix A.1) is the internal model update threshold: "surprise ≥ 5 N; slow-wrench rate ≤ 0.2." This means the system only re-learns when the force prediction error exceeds 5 Newtons AND the slow wrench is relatively stable. This is both a safety mechanism (prevents adaptation to noise or transient collisions) and a tuneable deployment parameter. In industrial settings where an unexpected contact should trigger a stop rather than adaptation, this threshold becomes a key safety dial. The paper doesn't discuss this from a safety engineering perspective, but any team deploying this in human-adjacent environments needs to evaluate what "surprise" means in their context — inadvertent contact with a human could trigger adaptation rather than halt.

The Framework Explicitly Cannot Handle Deformable Objects, Fluids, or Granular Materials

The Limitations section explicitly scopes out an enormous class of real-world manipulation: "our current framework can only build internal models of dynamic properties that are directly related to forceful interactions, such as object gravity, contact stiffness, and friction. Our method cannot be directly applied to non-rigid-body objects, such as deformable objects, fluids, and granular materials." For companies targeting food handling (soft produce, liquids), laundry folding, or agricultural applications, IMPACT as published is inapplicable. Investors evaluating companies in these verticals should not extrapolate IMPACT's results to those domains — the physics modeling assumptions break entirely when objects deform or flow.