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/ADEPT: Accelerating Dexterity vi…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

ADEPT: Accelerating Dexterity via Pre-Training and Post-Training using Reinforcement Learning

DATE August 19, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS JAYJUN LEE, ANKUR HANDA, ET AL. (ARXIV PHYSICAL AI)ARXIV 2608.19182
// KEY TAKEAWAYS5 ITEMS
  1. 01Pre-Training Dexterity as a Reusable Capital Asset
  2. 02Catastrophic Forgetting is the Core Engineering Problem in RL Transfer
  3. 03Tactile Sensing Is Not Optional for Contact-Rich Manipulation
  4. 04Full Joint-Space Control Beats Dimensionality Reduction for Dexterity
  5. 05Sim-to-Real Transfer Requires Identical Controllers in Both Environments
// SUMMARY

Why Should You Care?

ADEPT is NVIDIA's answer to the fundamental economic problem of dexterous robotics: every new task requires rediscovering the same skills from scratch. The paper demonstrates that a pre-trained "dexterity foundation" can be reused across tasks, robots, and sensor modalities — cutting per-task training from ~9B environment steps to 3B, and executing complex pick-reorient-insert behaviors 2-14x faster than prior state-of-the-art. This is a systems-level contribution disguised as an ML paper.


1. Key Themes

Pre-Training Dexterity as a Reusable Capital Asset

The core bet: train once on a general "object reposing" task, amortize that cost across every downstream task. The pretrained policy learns reaching, grasping, lifting, in-hand reorientation, and transport across 16 primitive objects — and those skills transfer without retraining.

The economics are explicit: "ADEPT trains a downstream-task teacher in 3B environment steps on top of the 8B-step reposing pretraining, for a total of 11B steps. Training from scratch is highly seed-sensitive, with most seeds plateauing well below ADR 6... and only a few reaching it after about 9B steps." (Section 4.1)

More importantly, the 8B pre-training cost is fixed. Each new task costs only 3B additional steps. The marginal cost per task drops dramatically as the task library grows — a fundamentally different unit economics model than task-specific RL.

Catastrophic Forgetting is the Core Engineering Problem in RL Transfer

This paper's most operationally useful contribution may be its diagnosis of why naive fine-tuning fails — and its precise recipe for fixing it. When you take a pretrained policy and run standard PPO on a new task, the policy collapses to zero performance almost immediately.

The paper traces this to three simultaneous failures: "mismatched observation spaces, misaligned value estimates, and excessive policy drift during early PPO updates." (Section 3.3) The fix is a three-step stabilization sequence: behavior cloning distillation to handle the observation space mismatch, critic warm-up to recalibrate value estimates before any policy gradient touches the actor, and then conservative PPO with the actor learning rate reduced 100x (from 1e-3 to 1e-5).

The ablation table (Table 3) makes the stakes concrete: every configuration with a 1e-3 actor learning rate collapses to 0% success across all 5 seeds, even with all other stabilizers in place. The reduced learning rate is load-bearing.

Tactile Sensing Is Not Optional for Contact-Rich Manipulation

The paper delivers a clear verdict on vision-only vs. visuo-tactile policies for insertion tasks. On the Flexiv-Sharpa system running the same square/round peg insertion task, the vision-only student achieves 3/10 in real-world deployment while the visuo-tactile student achieves 8/10 (Table 4).

The failure mode is precise and actionable: "The vision-only student cannot tell whether a grasp has succeeded, so even after a good grasp it often reopens the hand, drops the object, and loops between grasping and regrasping." (Section 4.2) Tactile sensing isn't improving grasp quality — it's providing the grasp confirmation signal that prevents catastrophic downstream failures. This is a sensor fusion argument, not just a capability argument.

Full Joint-Space Control Beats Dimensionality Reduction for Dexterity

Most prior dexterous robot work restricts hand control to a low-dimensional PCA subspace of human grasps (e.g., DextrAH-G uses a 5D PCA subspace). ADEPT drives a geometric fabric in the full 23-29 DoF joint configuration space.

The paper is direct about the tradeoff: "ADEPT instead drives geometric fabrics in the full joint configuration space (Cspace fabrics), exposing the full arm–hand kinematic space to the policy at the cost of a substantially harder learning problem." (Section 2) The payoff is in-hand reorientation, finger gaiting, and contact-rich manipulation that can't emerge from a compressed grasp subspace. The geometric fabric handles the safety consequences (joint limits, self-collision) that make full joint-space control dangerous without a mediating controller.

Sim-to-Real Transfer Requires Identical Controllers in Both Environments

ADEPT's sim-to-real story rests heavily on a single design choice: the geometric fabric runs identically in simulation and on the real robot. "The same fabric instance runs in simulation and on the real robot, minimizing the controller gap from the sim-to-real problem." (Section 3.5)

This extends to tactile sensing via TacMap penetration-depth maps that share representation between simulation and hardware, "so the student consumes tactile signals without additional sim-to-real bridging." (Section 3.4) The lesson for deployment teams: sim-to-real success is not just a training curriculum problem — it requires deliberate architectural parity between simulation and hardware interfaces.


2. Contrarian Perspectives

You Don't Need Demonstrations to Learn Dexterous Manipulation — You Need the Right Prior

The dominant paradigm in dexterous manipulation is that multi-fingered robots require human demonstrations to bootstrap learning, because the reward landscape is too sparse. DemoStart (a Google DeepMind paper cited in the related work) "learns grasp–reorient–insert behaviors on a three-fingered hand from pixels but requires demonstrations to seed learning." (Section 2)

ADEPT's counter-argument: demonstrations are a proxy for the right initialization, not a requirement. "Our results represent the first demonstration of challenging pick-reorient-insert with robotic arm-hand systems via sim-to-real RL from raw perception without demonstrations or pose trackers." (Section 1) The pretrained reposing policy provides what demonstrations would otherwise provide: a starting distribution close enough to the downstream task that RL can discover solutions efficiently. The mechanism is different (pre-training vs. imitation) but the function is the same.

This matters commercially because demonstrations are expensive to collect, platform-specific, and don't generalize across robot embodiments. A reusable RL prior does.

Object Pose Estimation is an Unnecessary Dependency for Deployed Dexterous Policies

Several prominent prior works — SimToolReal and Play2Perfect (both cited as contemporaneous work) — deploy state-based teachers in the real world that take estimated object pose as an input observation. This requires a pose estimation pipeline running in the deployment loop, adding latency, failure modes, and calibration requirements.

ADEPT's position: "Sim-ToolReal similarly trains a task-agnostic object-centric RL policy... but its deployed state-based policy is explicitly conditioned on estimated object and goal poses. ADEPT instead deploys perception-based students that consume raw RGB and fingertip tactile directly, without a pose estimator in the loop." (Section 2)

The two-stage distillation curriculum (train on reposing teacher first to build visual representations, then fine-tune on the downstream task) is specifically designed to produce policies that can localize objects from raw images without a separate pose estimator. The 8-keypoint auxiliary loss during distillation teaches the visual encoder implicit pose estimation — but keeps it internal to the policy rather than as an external dependency.

Speed Is a First-Class Metric That Benchmarks Systematically Underweight

The FMB benchmark was designed for parallel-jaw grippers operating through multi-stage pipelines with external fixtures. ADEPT's multi-fingered policies solve the same benchmark tasks 2-14x faster: "our multi-fingered policies solve each task in 5–10 s per trial, compared to 20–70 s per trial for the FMB parallel-jaw pipeline." (Section 1)

This isn't presented as the headline result, but it should be. In production robotics — warehouse picking, manufacturing assembly, food service — cycle time directly determines economic viability. A 2-14x throughput advantage over the established benchmark pipeline is a commercial argument, not just an academic one. The fact that the robot eschews external fixtures entirely (because multi-fingered hands can reorient objects in-hand) also eliminates capital and maintenance costs associated with specialized tooling.


3. Companies Identified

NVIDIA Corporation Most of the author team is NVIDIA employees. This is NVIDIA's in-house dexterous manipulation research, building on their Isaac Gym simulation platform and geometric fabrics prior work. Relevant as the organization that produced the framework and controls the simulation infrastructure it depends on. "Jayjun Lee, Jessica Yin, Asif Rana, Nicholas Blauch, Sam Mady, Mohak Bhardwaj, Nathan Ratliff, Karl Van Wyk, Ankur Handa — †NVIDIA Corporation." (Author list)

KUKA Provider of the iiwa7 7-DoF robot arm used in the 23 DoF Kuka-Allegro platform. The system is a primary deployment target: "a 23 DoF Kuka iiwa7 + Allegro system, an RGB student solves the Functional Manipulation Benchmark (FMB) peg insertion task end-to-end as a single learned policy." (Section 1)

Allegro (Wonik Robotics) The 16 DoF four-fingered hand paired with the KUKA arm. One of the two primary hardware platforms for real-world validation. "a 7 DoF Kuka iiwa7 with a 16 DoF Allegro four-fingered hand (nq = 23)." (Section 4.2)

Flexiv Provider of the Rizon 7-DoF robot arm used in the 29 DoF Flexiv-Sharpa platform. The visuo-tactile results (8/10 on hardest FMB peg) run on this arm. "a 7 DoF Flexiv Rizon with a 22 DoF Sharpa five-fingered hand (nq = 29)." (Section 4.2)

Intel (RealSense) Cameras used for real-world deployment on both platforms. "each rigidly mounted to a workbench and observed by two calibrated Intel RealSense RGB cameras in the same left-and-center layout." (Section 4.2) Relevant for hardware integrators selecting sensor configurations.

NVIDIA (Isaac Gym) The GPU-accelerated simulation platform enabling massively parallel RL training. "Even with massively parallel GPU simulation [5], RL policies trained from scratch for one task rarely transfer to another." (Section 1, citing Isaac Gym paper [5]) The entire ADEPT framework is built on top of this infrastructure.


4. People Identified

Ankur Handa, NVIDIA Corporation Senior researcher and co-author of foundational prior work including DextrAH-G, DextrAH-RGB, DextrAH-G, and Dextreme — the lineage that ADEPT builds directly upon. Likely the technical lead on NVIDIA's dexterous manipulation research program. "Dextreme: Transfer of agile in-hand manipulation from simulation to reality." (Reference [2])

Karl Van Wyk, NVIDIA Corporation Co-inventor of Geometric Fabrics, the safety-enforcement layer that is central to ADEPT's approach. "Geometric fabrics: a safe guiding medium for policy learning." (Reference [13]) Also co-author of DextrAH-G. His work on fabrics is load-bearing infrastructure for the entire ADEPT system.

Nathan Ratliff, NVIDIA Corporation Pioneer of Riemannian Motion Policies and Optimization Fabrics — the theoretical foundation for geometric fabrics. "Riemannian motion policies." (Reference [26]) Also co-author of multiple DextrAH papers. Provides the geometric control theory underpinning ADEPT's safety guarantees.

Nima Fazeli, University of Michigan / NVIDIA Co-author bridging academic and industry research. Also lead on HydroShear (tactile sim-to-real for parallel-jaw grippers, RSS 2026), which informs ADEPT's tactile sensing approach. "HydroShear: Hydroelastic shear simulation for tactile sim-to-real reinforcement learning." (Reference [29])

Jayjun Lee, University of Michigan / NVIDIA First author, PhD student bridging UM and NVIDIA. Also co-author of HydroShear. The academic-industry bridge suggests this research has both deployment and publication ambitions.


5. Operating Insights

The Three-Step Post-Training Recipe Is Directly Deployable

If you are building an RL-based dexterous manipulation system and need to adapt a pre-trained policy to a new task, ADEPT's post-training recipe is a concrete engineering checklist. The ablation table (Table 3) tells you exactly what happens if you skip each step:

Skip BC distillation: adaptation time nearly doubles (35.2h vs 19.9h), one of five seeds fails to converge. Skip critic warm-up: training success rate drops from 46% to 28.4%, instability increases. Use standard learning rate (1e-3 instead of 1e-5): 0/5 seeds converge, policy collapses within the first few updates regardless of other settings.

The critical implementation detail: "The reduced actor learning rate is the necessary component: every 1e-3 variant collapses at ADR 20 with zero success, even with BC and critic warm-up in place." (Section 4.1, Table 3) This is a hard constraint, not a tuning recommendation.

Two-Stage Distillation Is Required for Vision-Based Sim-to-Real Transfer

Teams attempting to distill state-based RL teachers into vision-based students for real deployment should note that single-stage distillation fails completely in this work: "The single-stage baseline fails to transfer entirely (0/10 on both pegs)." (Section 4.2)

The mechanism matters: Stage 1 trains on the reposing teacher with an auxiliary keypoint prediction loss to build competent visual representations before policy learning begins. Stage 2 then fine-tunes on the downstream task with an already-capable visual encoder. "This two-stage curriculum keeps a single dominant learning objective at each stage: Laux shapes the visual encoder in Stage 1 while LBC then drives contact-rich policy refinement in Stage 2 on top of an already-competent encoder, removing the conflict between perception and policy learning that arises when the two are trained jointly from scratch." (Section 3.4)

For CTOs evaluating sim-to-real pipelines: budget for two distillation stages and ensure your Stage 1 curriculum exercises the perceptual demands of your downstream task.


6. Overlooked Insights

Pre-Training Enables Novel Behaviors That Weren't in the Pre-Training Distribution

The paper's dish placement result is undersold. The conventional concern about pre-training is that it constrains the downstream policy to behaviors already present in the pre-training distribution. The dish placement task — which requires grasping a large flat plate and a flip-and-regrasp strategy for upside-down initializations — provides direct evidence against this concern.

"Grasping, however, does not [transfer]. Unlike the FMB pegs, which remain within the pretrained policy's grasp repertoire, the plate is geometrically far from the 16 simple primitives used during pre-training, and none of the pretrained grasps succeed on it zero-shot. Post-training therefore begins without a competent grasping behavior to preserve or refine." (Section 4.1)

Yet post-training learns the full task anyway, including the flip-and-regrasp that never appeared in pre-training. The mechanism: pre-training provides a useful starting distribution (the policy reaches the plate and makes plausible grasp attempts), not a complete behavior library. The policy can discover qualitatively new behaviors from that starting point. This is the key existence proof that ADEPT generalizes beyond task families similar to the pre-training task — but the paper buries it in a paragraph rather than highlighting it as a primary result.

Population-Based Training During Pre-Training Has an Underappreciated ADR Preservation Rule

The paper describes a subtle but important design choice in how PBT (Population-Based Training) interacts with the Automatic Domain Randomization curriculum during pre-training. When a low-performing policy's weights are overwritten from a top performer, it continues training from its own ADR level, not the donor's.

"Because the receiving policy typically has a lower ADR level than the donor, the rewritten policy effectively resumes training against an easier curriculum slice but with the donor's well-shaped weights, letting it climb back toward the population frontier without re-discovering the basic dexterous behaviors the donor already encodes." (Appendix C)

This is a non-obvious implementation detail with significant practical consequences. If you copy weights from a policy trained at high ADR difficulty into a policy at low ADR difficulty and continue at the donor's ADR level, you get a policy optimized for easy problems forced to immediately operate in a hard regime — likely collapsing. Preserving the receiver's ADR level means the transferred weights immediately improve performance in a regime the receiver can handle, accelerating recovery. Teams building large-scale RL training infrastructure for physical AI should implement this pattern deliberately rather than defaulting to naive weight copying.