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/SkyJEPA: Learning Long-Horizon W…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

SkyJEPA: Learning Long-Horizon World Models for Zero-Shot Sim-to-Real Control of Quadrotors

DATE June 22, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS PRATYAKSH RAO, GIUSEPPE LOIANNO, ET AL. (ARXIV PHYSICAL AI)ARXIV 2606.23444
// SUMMARY

1. Key Themes

Latent-Space Dynamics Mitigate Compounding Error

Traditional neural network dynamics models predict the next physical state and feed that prediction back into the model to forecast further into the future. This autoregressive approach causes small errors to snowball, leading to unstable, physically implausible long-horizon predictions. SkyJEPA solves this by predicting future states in a compact, abstract "latent space" rather than directly in physical state space. The paper demonstrates that this approach significantly reduces error accumulation: "Our method not only has a lower long-horizon compounding ratio, but also injects less new error at each recursive step" (Section VI-A). For a robotics company, this means the control system can look further into the future without the model's predictions diverging into nonsense, enabling safer and more aggressive maneuvers.

Physics-Inspired Probing for Interpretable Control

While predicting in latent space is great for stability, model-based controllers need physical quantities (position, velocity, attitude) to calculate costs and enforce safety constraints. SkyJEPA introduces a "physics-inspired prober" that maps the frozen latent representations back to physical states using a structured, differentiable kinematic model. Instead of learning the entire physics from scratch, the prober only learns the "missing dynamics" (like aerodynamic drag or motor delays) as residual corrections on top of a parameter-free kinematic prior. The results are dramatic: adding this prober improved position prediction accuracy by roughly 3.9x and attitude accuracy by 8.5x compared to an unconstrained neural network decoder (Section VI-B, Table III).

Zero-Shot Sim-to-Real via Automated Data Synthesis

Collecting real-world flight data for agile drones is expensive, risky, and often incomplete. SkyJEPA relies entirely on a structured simulation pipeline using domain randomization—varying mass, inertia, drag, and motor parameters across 500 simulated domains. The resulting model transfers directly to the real world without any task-specific fine-tuning. In outdoor closed-loop tests, the system tracked diverse trajectories with a 26-38% lower position error compared to traditional predictive baselines (Section VI-C, Table IV). This proves that with the right data generation strategy, simulation alone can be sufficient for real-world deployment.

Real-Time Embedded Control on Edge Hardware

Learned world models are often too computationally heavy for high-frequency control on drones. SkyJEPA combines its lightweight latent model (only ~9,000 parameters) with a sampling-based optimal controller (MPPI) and optimizes it using NVIDIA TensorRT. The entire pipeline runs fully onboard an NVIDIA Jetson Orin NX, achieving the 100Hz (10ms) control frequency required for agile flight. As noted in the paper, "U=20 and S=512 lies near this boundary, making it an effective operating point that maximizes controller lookahead and sample diversity while remaining close to the real-time budget" (Section V-D, Figure 5).

2. Contrarian Perspectives

Real-World Data Collection is Unnecessary for Robust Control

Most robotics companies invest heavily in real-world data collection, system identification, or online adaptation to bridge the sim-to-real gap. This paper argues that if you structure your simulation data correctly, you can skip real-world data entirely. The authors tested the drone under two deployment scenarios—propeller switching and payload attachment (adding 300g of mass)—that were never seen during training. The model maintained robust control without any retraining or online adaptation, achieving "approximately 1.35x lower position RMSE than MPPI (Pred.)" under payload changes (Section VI-D, Table V). This challenges the notion that every hardware variation requires a new data collection campaign.

Autoregressive State-Space Models are Fundamentally Flawed

The standard approach in model-based reinforcement learning is to train an encoder-decoder model to predict the next state and recursively feed it back in. The paper explicitly argues that this paradigm is intrinsically broken for long-horizon planning: "This compounding-error problem is intrinsic to predictive modeling and is not removed by better losses, residual corrections, or online updates alone, motivating the need for alternatives" (Section II-A). They show that adding physics regularization to these standard models only yields modest improvements, whereas moving to a JEPA-style latent prediction fundamentally solves the stability issue.

3. Companies Identified

NVIDIA

  • Description: Designer of GPUs and embedded computing platforms for AI and robotics.
  • Why relevant: The entire SkyJEPA control framework runs on an NVIDIA Jetson Orin NX embedded computer. The PyTorch model is also optimized using NVIDIA TensorRT for accelerated inference.
  • Quotes: "The learned PyTorch latent dynamics model is exported and optimized using NVIDIA TensorRT for accelerated inference on the NVIDIA Jetson Orin NX" (Section V-D).

PX4 / Pixracer Pro

  • Description: Open-source flight control software and hardware widely used in the drone industry.
  • Why relevant: The physical quadrotor platform uses a Pixracer Pro flight controller running PX4 for low-level control, highlighting how learned world models can integrate with existing industry-standard autopilots.
  • Quotes: "The platform uses an NVIDIA Orin NX for onboard computation and a Pixracer Pro flight controller running PX4 [39] for low-level control" (Section V-A).

4. People Identified

Yann LeCun

  • Lab/Institution: New York University (NYU) / Meta AI
  • Why notable: LeCun is a Turing Award winner and the pioneer of Joint Embedding Predictive Architectures (JEPAs). His involvement signals that the foundational architecture behind this paper is backed by top-tier AI research, lending credibility to the JEPA approach for physical AI.
  • Quotes: Co-author of the paper; the methodology relies on "the JEPA principle of predicting representations rather than reconstructing inputs [31]" (Section IV-A).

Giuseppe Loianno

  • Lab/Institution: University of California Berkeley (Agile Robotics Lab)
  • Why notable: Loianno is a leading expert in aerial robotics and agile flight. His lab focuses on real-world deployment of autonomous drones, ensuring this paper isn't just a theoretical exercise but is grounded in actual hardware constraints.
  • Quotes: Co-author; the paper validates its claims through "extensive open-loop and outdoor closed-loop experiments" (Abstract).

Randall Balestriero

  • Lab/Institution: Brown University
  • Why notable: Co-developer of the Sketched Isotropic Gaussian Regularization (SIGReg) used to prevent representation collapse in the model. This is a critical component that simplifies the training of self-supervised world models.
  • Quotes: The anti-collapse mechanism "introduces only two practical hyperparameters... with λ_sig being the main parameter to tune" (Section IV-B).

5. Operating Insights

Inject Physics Structure into Your Decoders

If you are building learned dynamics models for control, do not use a generic multi-layer perceptron (MLP) to decode latent states into physical trajectories. SkyJEPA shows that replacing an unconstrained prober with a physics-inspired prober (which integrates a kinematic model and only learns residual corrections) yields massive improvements. For a CTO, this means your neural network doesn't have to waste capacity learning basic Newtonian physics—it can focus entirely on learning the hard-to-model effects like aerodynamic drag and motor delays, resulting in vastly more accurate and stable predictions (Section VI-B, Table III).

You Can Run High-Frequency MPC on Edge Devices

There is a common misconception that sampling-based optimal control (like MPPI) combined with neural network rollouts is too slow for embedded drone hardware. By keeping the latent dynamics model extremely lightweight (~9K parameters) and using TensorRT optimization, the system achieves 100Hz control onboard an NVIDIA Orin NX. Engineering teams should prioritize model compression and hardware-specific optimization (like TensorRT) to unlock the benefits of learned world models without sacrificing control frequency (Section V-D, Figure 5).

6. Overlooked Insights

The Trajectory Distribution Quality (TDQ) Score

Buried in the experiments section is a novel metric for evaluating training data quality. The authors introduce the TDQ score, which measures state-action coverage, transition richness, and parameter robustness using clustering and entropy. They show a clear inverse relationship: as TDQ increases, prediction error drops, until it saturates around 1.5 million samples. For any robotics company generating synthetic data, TDQ offers a quantitative way to answer: "Is my simulated dataset diverse enough to capture the real-world dynamics manifold, or do I need to generate more?" (Section VI-E, Figure 12).

Temporal Straightening as a Measure of Model Quality

The paper analyzes "temporal straightening"—measuring whether consecutive latent state transitions point in the same direction. They found that standard predictive models have negative straightening scores (meaning their predictions wander and backtrack), while latent models have highly positive scores (meaning they evolve smoothly). This is an overlooked diagnostic tool: if your learned dynamics model's latent trajectories are temporally "curved," it is likely to suffer from compounding errors during rollout. Engineering teams can use temporal straightening as a quick sanity check during model development (Section VI-A, Figure 7).