Papers
Topics
Authors
Recent
Search
2000 character limit reached

JEPA-Anything: Learning Predictive Models across Different Worlds

Published 17 Sep 2026 in cs.CL | (2609.20800v1)

Abstract: World modeling enables intelligence to anticipate consequences, guide interventions, and learn from interaction. Yet predictive models remain domain-specific: can a common learning principle support world modeling across radically different systems? We introduce JEPA-Anything, a domain-agnostic framework based on orthogonal predictive factorization (OPF). Extending joint-embedding predictive architectures, OPF decomposes latent targets into complementary factors, learns them through dedicated pathways, and recombines them within a shared predictive design. We evaluate JEPA-Anything across seven domains: vision, biology, clinical trajectories, control, molecular dynamics, physical fields, and weather. Experiments span representation learning, intervention prediction, out-of-distribution generalization, and long-horizon dynamics, including 10 matched dynamics tasks, forecasting of over 1,000 clinical events, and 100-step molecular rollouts across four systems. Against matched JEPA baselines, JEPA-Anything improves reported metrics on all 10 dynamics tasks and reduces single-intervention prediction error on Interventional Pong by 34.8%. It achieves the lowest one-step and 100-step molecular errors among compared methods in all four systems. Beyond prediction, a factor-nominated biological intervention receives experimental support in cell co-cultures, patient-derived organoids, tumor fragments, and mice; latent orbital modes recover the Keplerian scaling exponent with a fitted slope of -1.4991. These results support a common factorized predictive principle across heterogeneous worlds, connecting world modeling with intervention and experimentally grounded scientific discovery. Code: https://github.com/Gen-Verse/JEPA-Anything

Summary

  • The paper introduces Orthogonal Predictive Factorization (OPF), a method that improves predictive modeling across diverse domains by organizing latent target representations into active, non-overlapping subspaces.
  • OPF achieves significant improvements in various domains, including a 34.8% reduction in single-intervention prediction error on CITRIS Interventional Pong and consistently lower molecular prediction errors across four systems.
  • The method supports downstream tasks such as scientific analysis and control, demonstrating robustness and generalizability across heterogeneous domains with stable synthesis and functional factor usage.

Problem setting and central claim

โ€œJEPA-Anything: Learning Predictive Models across Different Worldsโ€ (2609.20800) addresses a structural limitation of conventional JEPA formulations: although joint-embedding prediction can learn useful latent states without pixel- or observation-space reconstruction, the target state is typically represented through a monolithic embedding and predicted by a single pathway. The paper argues that this design creates a capacity-allocation problem when the target contains heterogeneous predictive structure, such as multiple entities, spatial scales, temporal modes, intervention effects, or physical variables with unequal predictability.

The proposed framework, JEPA-Anything, retains the JEPA contextโ€“target interface while introducing orthogonal predictive factorization (OPF). A domain adapter converts images, sequences, graphs, fields, molecular states, clinical records, or cellular profiles into tokens and descriptors. A view sampler then specifies which observations constitute context and which constitute targets. After this domain-specific preprocessing, the predictive core is shared: an online encoder represents the context, an EMA target encoder represents target states, and multiple predictor branches estimate complementary components of the target representation.

The paperโ€™s principal claim is not that all domains share an identical representation, encoder, or transition function. Rather, it claims that they can share a factorized predictive learning principle and latent-state interface. Domain-specific observation geometry, tokenization, view sampling, encoder architecture, and downstream readout remain configurable. OPF is intended to organize the resulting latent target into active, non-overlapping subspaces that can be used for terminal readout, recursive dynamics, planning, or scientific analysis.

The evaluation spans visual binding, single-cell biology, clinical forecasting, intervention-conditioned prediction, continuous control, molecular dynamics, physical fields, and weather. The paper reports improvements over matched monolithic JEPA baselines on all ten tasks in its main dynamics benchmark, a 34.8% reduction in single-intervention prediction error on CITRIS Interventional Pong, the lowest one-step and 100-step molecular errors across four systems, and a latent orbital scaling exponent of โˆ’1.4991-1.4991, close to the Keplerian value of โˆ’3/2-3/2.

Architecture and orthogonal predictive factorization

Let the online encoder produce a context representation zcz_c and the EMA target encoder produce a target representation ztโˆˆRdz_t \in \mathbb{R}^d. OPF introduces KK learned projectors PkโˆˆRdร—rP_k \in \mathbb{R}^{d \times r}, with Kr=dKr=d, and analyzes the stop-gradient target embedding into factor coordinates:

zt(k)=PkโŠคzt.z_t^{(k)} = P_k^\top z_t.

Each factor has a dedicated predictor qkq_k that receives the shared context representation and, when necessary, a target descriptor such as a spatial coordinate, time index, entity identity, action, or intervention label. The predicted factor coordinates are concatenated and synthesized into a complete latent state through the Mooreโ€“Penrose pseudoinverse of the combined analysis map:

z^t=(PโŠค)โ€ [z^t(1);โ€ฆ;z^t(K)].\widehat z_t = (P^\top)^\dagger \left[ \widehat z_t^{(1)};\ldots;\widehat z_t^{(K)} \right].

Under exact orthogonality, synthesis reduces to ordinary orthogonal reconstruction. The method therefore retains both factor-specific predictions and a complete latent state suitable for decoding, planning, and autoregressive rollout. This distinction is important: the factors are not independent latent variables in the generative-model sense, nor are they required to correspond to predefined semantic or causal entities. They are predictive subspaces constrained to be complementary.

The training objective adds three regularization terms to the base loss of each domain. The orthogonality loss enforces orthonormality within each factor and orthogonality between factors. A factor-activity loss imposes a lower bound on the empirical standard deviation of projected target coordinates, preventing branches from becoming inactive. An encoder-variance term directly discourages collapse in the online representation. Factor prediction itself uses coordinate-wise squared error between predicted and target factor states.

This formulation differs from redundancy-reduction objectives such as Barlow Twins (Alekseev, 2021) and VICReg (Bardes et al., 2021) in where structure is imposed. OPF applies geometric constraints to learned predictive subspaces and explicitly preserves an analysisโ€“synthesis map. It is consequently designed not only to make representations non-redundant, but also to make the concatenated prediction outputs usable as a numerically stable latent state.

The paper provides an exact geometric argument. If the projectors form an orthogonal basis, then the combined matrix โˆ’3/2-3/20 is orthogonal, its condition number is one, and errors in factor coordinates are transferred to the synthesized state without amplification. Without cross-factor orthogonality, duplicated directions can make the analysis matrix rank deficient, while nearly duplicated directions can produce arbitrarily large condition numbers. The trained CITRIS audit is consistent with this prediction: orthogonal factorization produces cross-factor overlap of approximately โˆ’3/2-3/21, minimum singular value โˆ’3/2-3/22, condition number โˆ’3/2-3/23, and exact-coordinate synthesis NMSE of approximately โˆ’3/2-3/24. The unconstrained multi-head alternative has overlap โˆ’3/2-3/25, minimum singular value โˆ’3/2-3/26, condition number โˆ’3/2-3/27, and synthesis NMSE โˆ’3/2-3/28.

These measurements establish the geometry of the factor interface, but they do not by themselves establish that OPF improves prediction. The remainder of the experiments tests whether this constrained coordinate system yields better representations and dynamics.

Common interface across heterogeneous domains

The frameworkโ€™s unifying abstraction is a contextโ€“target relation between states of the same underlying system. For images, context may be visible patches and targets masked regions. For clinical data, context is patient history and the target is a future patient state. For control, context includes the current state and action, while the target is a future state. For molecular dynamics, the model predicts future atomic configurations. For scientific analysis, the learned factor coordinates are retained for intervention nomination or spectral inspection.

The scenario atlas emphasizes this common structure across three evaluation groups: terminal readout, latent world dynamics, and scientific analysis.

Figure 1

Figure 1: The scenario atlas organizes evaluation around terminal readout, recursive latent dynamics, and factor-level scientific analysis.

This abstraction is deliberately weaker than a claim of architectural uniformity. The paper permits ViTs, Transformers, GNNs, MLPs, and domain-specific adapters. In some tasks, the OPF loss is added to an existing objective rather than replacing it. Consequently, the empirical contribution is best interpreted as a transferable regularization and state-organization mechanism within otherwise specialized pipelines, rather than as a single fully domain-independent model.

Terminal readout: visual, cellular, and clinical evaluation

Controlled visual binding

The visual experiment examines whether factorized predictive pretraining improves a frozen representationโ€™s ability to preserve both the location and operation associated with controlled image changes. DINOv3 and SigLIP2 backbones are compared under frozen-checkpoint, monolithic JEPA, and OPF-JEPA conditions. The downstream readout is held fixed between standard JEPA and JEPA, and evaluation includes image-disjoint splits and leave-one-cell-out generalization.

For DINOv3, JEPA improves injective held-out-cell accuracy from โˆ’3/2-3/29 to zcz_c0, reduces collapse from zcz_c1 to zcz_c2, and increases grid recovery from zcz_c3 to zcz_c4. For SigLIP2, the corresponding changes are more modest: injective accuracy rises from zcz_c5 to zcz_c6, collapse decreases from zcz_c7 to zcz_c8, and grid recovery rises from zcz_c9 to $0.688.

The gains are consistent but small. They indicate that OPF can improve compositional readout under a matched downstream protocol, although the experiment does not show that factor coordinates themselves acquire identifiable semantic meanings. The visual result therefore supports improved representation quality, not semantic disentanglement.

Single-cell representation and perturbation prediction

The single-cell experiments use an scGPT backbone and compare scGPT, Cell-JEPA, and the proposed factorized JEPA. Models are pretrained on approximately 800,000 human kidney cells and evaluated on PBMC-10K clustering and Adamson and Norman perturbation-response prediction.

JEPA achieves an AvgBIO score of $z_t \in \mathbb{R}^d$0 under PBMC fine-tuning and $z_t \in \mathbb{R}^d$1 in the zero-shot setting, compared with $z_t \in \mathbb{R}^d$2 and $z_t \in \mathbb{R}^d$3 for Cell-JEPA. On perturbation prediction, Pearson correlation reaches $z_t \in \mathbb{R}^d$4 on Norman and $z_t \in \mathbb{R}^d$5 on Adamson, compared with $z_t \in \mathbb{R}^d$6 and $z_t \in \mathbb{R}^d$7 for Cell-JEPA.

Evaluation scGPT Cell-JEPA JEPA
PBMC fine-tuned AvgBIO 0.7531 0.7830 0.8301
PBMC zero-shot AvgBIO 0.5288 0.7194 0.7752
Norman Pearson 0.631 0.787 0.814
Adamson Pearson 0.905 0.937 0.942

The zero-shot improvement is particularly relevant because it suggests that factorized latent prediction can improve transfer across cellular datasets without relying exclusively on task-specific fine-tuning. However, the perturbation setup uses an expression decoder and additional task-specific components, so the observed improvement reflects the complete Cell-JEPA/JEPA pipeline rather than OPF in isolation.

Longitudinal clinical forecasting

The clinical experiment predicts a synthesized future patient state from longitudinal multimodal records and uses a decoder to estimate risks for more than 1,000 future clinical events. Mean PRAUC over the full event vocabulary is the primary metric, with patient-level cohort splitting and five training seeds.

The paper reports that JEPA exceeds the matched monolithic JEPA across the event vocabulary, but the supplied text does not provide the numerical PRAUC values. The result nevertheless tests an important property of factorized prediction: a single future latent state can support a broad event-risk readout rather than a narrow task-specific forecast. The implication is that OPF may improve the information content of a future state when the downstream target comprises many heterogeneous and imbalanced event types.

Figure 2

Figure 2: Mean PRAUC rankings for prediction of more than 1,000 future clinical events.

Intervention-conditioned dynamics and compositional prediction

CITRIS Interventional Pong provides the most direct test of whether factorized states support intervention composition. The model receives a pre-intervention observation and an intervention label, then predicts the next state. Evaluation includes both observed single interventions and a combined intervention withheld as a complete configuration during training.

Relative to standard JEPA, JEPA reduces single-intervention one-step MSE from ztโˆˆRdz_t \in \mathbb{R}^d8 to ztโˆˆRdz_t \in \mathbb{R}^d9, a 34.83% reduction. For the unseen combined intervention, MSE decreases from KK0 to KK1, a 12.90% reduction. Six-step free-rollout MSE decreases from KK2 to KK3, an 8.58% reduction.

Figure 3

Figure 3: OPF improves single-intervention, combined-intervention, and six-step free-rollout prediction on Interventional Pong.

The decreasing gain from one-step prediction to free rollout is informative. OPF substantially improves immediate intervention-conditioned prediction, but the advantage attenuates under recursive application. This indicates that factorization improves local state prediction without eliminating long-horizon error accumulation. The combined-intervention result is consistent with compositional reuse, although the withheld configuration remains within a controlled synthetic environment and does not establish causal identification in general.

Out-of-distribution dynamics and rollout stability

The matched dynamics benchmark covers ten tasks spanning CausalWorld, DeepMind Control, PDEBench, WeatherBench2, and related physical-dynamics settings. Standard JEPA and JEPA use the same encoder, transition architecture, training budget, evaluation split, and five seeds. The paper reports improved metrics on all ten tasks, including nine prediction tasks and CausalWorld control.

Figure 4

Figure 4: Relative MSE reductions across the matched ten-task dynamics benchmark and closed-loop CausalWorld returns.

The rollout diagnostics show that OPF reduces both one-step error and error growth. In PDEBench Burgers, standard JEPA increases from MSE KK4 at step one to KK5 at step six, whereas JEPA increases from KK6 to KK7. In shallow-water prediction, the corresponding sixth-step errors are KK8 and KK9. For CausalWorld, JEPA reduces first-step MSE from PkโˆˆRdร—rP_k \in \mathbb{R}^{d \times r}0 to PkโˆˆRdร—rP_k \in \mathbb{R}^{d \times r}1 and sixth-step MSE from PkโˆˆRdร—rP_k \in \mathbb{R}^{d \times r}2 to $0.01079.

The additional APEBench evaluation reinforces the result. On Burgers, held-out late-state MSE decreases from $P_k \in \mathbb{R}^{d \times r}$3 to $P_k \in \mathbb{R}^{d \times r}$4, approximately a 49.5% reduction. Six-step rollout MSE decreases from $P_k \in \mathbb{R}^{d \times r}$5 to $P_k \in \mathbb{R}^{d \times r}$6, approximately a 44.7% reduction. On Kuramotoโ€“Sivashinsky dynamics, held-out late-state MSE decreases by approximately 13.2%, from $P_k \in \mathbb{R}^{d \times r}$7 to $P_k \in \mathbb{R}^{d \times r}$8.

The capacity-matched 50-step Burgers experiment shows smaller but persistent improvements. On in-distribution trajectories, H20/H50 MSE changes from $P_k \in \mathbb{R}^{d \times r}$9 to $Kr=d$0. On high-frequency OOD trajectories, it changes from $Kr=d$1 to $Kr=d2.Therelativeadvantagenarrowswithhorizon,from5.84<h2class=โ€ฒpaperโˆ’headingโ€ฒid=โ€ฒplanningโˆ’andโˆ’functionalโˆ’factorโˆ’usageโ€ฒ>Planningandfunctionalfactorusage</h2><p>Incontinuouscontrol,a<ahref="https://www.emergentmind.com/topics/crossโˆ’entropyโˆ’maskingโˆ’cemโˆ’loss"title=""rel="nofollow"dataโˆ’turbo="false"class="assistantโˆ’link"xโˆ’dataxโˆ’tooltip.raw="">CEM</a>plannerrollscandidateactionsequencesthroughthelearnedlatentmodelandexecutesthefirstactionofthehighestโˆ’scoringsequence.Parameterandcomputebudgetsarecloselymatched:thereportedparameterdifferencesremainbelow0.3<p>JEPAimprovesmeanCEMreturnonWalker2dandHalfCheetahbutlosestostandardJEPAonHopper.Thisenvironmentdependenceisanimportantqualification.Thefactorizedrepresentationimprovesplanningonlyundersomedynamicsandrewardstructures;itdoesnotestablishauniversalcontroladvantage.</p><p><imgsrc="https://images.emergentmind.com/paperโˆ’images/2609โˆ’20800/controlplanningv2.png"alt="Figure5"title=""class="markdownโˆ’image"loading="lazy"></p><p><pclass="figureโˆ’caption">Figure5:Capacityโˆ’matcheddifferencesinCEMreturn,withpositivevaluesfavoringJEPA.</p></p><p>Thefactorโˆ’interventionanalysisprovidesamoredirecttestofwhetherthelearnedbranchesarefunctionallyused.Replacinganyonefactorwithitstrainingโˆ’setmeanincreases20โˆ’steprolloutMSEinHopper,Walker2d,andHalfCheetah.Factorโˆ’wisestandarddeviationsremainnontrivial,rangingfrom2. The relative advantage narrows with horizon, from 5.84% to 3.15% in-distribution and from 5.01% to 2.82% under OOD conditions. This supports greater rollout stability but also makes clear that OPF is not a substitute for accurate long-horizon transition modeling.</p> <h2 class='paper-heading' id='planning-and-functional-factor-usage'>Planning and functional factor usage</h2> <p>In continuous control, a <a href="https://www.emergentmind.com/topics/cross-entropy-masking-cem-loss" title="" rel="nofollow" data-turbo="false" class="assistant-link" x-data x-tooltip.raw="">CEM</a> planner rolls candidate action sequences through the learned latent model and executes the first action of the highest-scoring sequence. Parameter and compute budgets are closely matched: the reported parameter differences remain below 0.3% and prediction-head FLOP differences below 2%.</p> <p>JEPA improves mean CEM return on Walker2d and HalfCheetah but loses to standard JEPA on Hopper. This environment dependence is an important qualification. The factorized representation improves planning only under some dynamics and reward structures; it does not establish a universal control advantage.</p> <p><img src="https://images.emergentmind.com/paper-images/2609-20800/control_planning_v2.png" alt="Figure 5" title="" class="markdown-image" loading="lazy"></p> <p><p class="figure-caption">Figure 5: Capacity-matched differences in CEM return, with positive values favoring JEPA.</p></p> <p>The factor-intervention analysis provides a more direct test of whether the learned branches are functionally used. Replacing any one factor with its training-set mean increases 20-step rollout MSE in Hopper, Walker2d, and HalfCheetah. Factor-wise standard deviations remain nontrivial, ranging from Kr=d$3 to $Kr=d$4 on Hopper, $Kr=d$5 to $Kr=d$6 on Walker2d, and $Kr=d$7 to $Kr=d8onHalfCheetah.InHalfCheetah,maskingF1orF3reducesreturninallfiveseeds,whilemaskingF2orF4reducesreturninfouroffiveseeds.</p><p><imgsrc="https://images.emergentmind.com/paperโˆ’images/2609โˆ’20800/factorinterventionv2.png"alt="Figure6"title=""class="markdownโˆ’image"loading="lazy"></p><p><pclass="figureโˆ’caption">Figure6:Replacingindividualfactorswiththeirtrainingโˆ’setmeansincreasesrollouterrorandgenerallyreducesplanningreturn.</p></p><p>Theseresultsestablishathreeโˆ’partevidencechain:factorsareactive,informationaboutmotionchangesislinearlyreadablefromindividualfactors,andfactorremovalaffectsrecursivepredictionandcontrol.Theydonotshowthateachfactorcorrespondstoauniquephysicalvariable.Thepaperexplicitlynotesthatafactormayencodeseveralrelatedquantities.</p><h2class=โ€ฒpaperโˆ’headingโ€ฒid=โ€ฒforceโˆ’freeโˆ’molecularโˆ’forecastingโ€ฒ>Forceโˆ’freemolecularforecasting</h2><p>Themolecularexperimentevaluatesautoregressivepredictionofatomicpositionsandvelocitiesinwater,quartz,paracetamol,andbenzene.OPFisappliedtothechanneldimensionofthe8 on HalfCheetah. In HalfCheetah, masking F1 or F3 reduces return in all five seeds, while masking F2 or F4 reduces return in four of five seeds.</p> <p><img src="https://images.emergentmind.com/paper-images/2609-20800/factor_intervention_v2.png" alt="Figure 6" title="" class="markdown-image" loading="lazy"></p> <p><p class="figure-caption">Figure 6: Replacing individual factors with their training-set means increases rollout error and generally reduces planning return.</p></p> <p>These results establish a three-part evidence chain: factors are active, information about motion changes is linearly readable from individual factors, and factor removal affects recursive prediction and control. They do not show that each factor corresponds to a unique physical variable. The paper explicitly notes that a factor may encode several related quantities.</p> <h2 class='paper-heading' id='force-free-molecular-forecasting'>Force-free molecular forecasting</h2> <p>The molecular experiment evaluates autoregressive prediction of atomic positions and velocities in water, quartz, paracetamol, and benzene. OPF is applied to the channel dimension of the Kr=d$9 equivariant sector, with projections shared across the three irrep components to preserve $z_t^{(k)} = P_k^\top z_t.$0 equivariance.

JEPA attains the lowest one-step displacement MAE and 100-step final-position RMSD in all four systems.

System Metric Scratch TrajCast-JEPA JEPA
Water One-step MAE 0.00387 0.00452 0.00376
Water 100-step RMSD 3.331 2.536 2.459
Quartz One-step MAE 0.01080 0.01043 0.01011
Quartz 100-step RMSD 2.089 1.912 1.877
Paracetamol One-step MAE 0.00901 0.00777 0.00705
Paracetamol 100-step RMSD 3.155 1.868 1.776
Benzene One-step MAE $z_t^{(k)} = P_k^\top z_t.$1 $z_t^{(k)} = P_k^\top z_t.$2 $z_t^{(k)} = P_k^\top z_t.$3
Benzene 100-step RMSD 0.0958 0.0701 0.0645

The consistent improvement across chemically distinct systems is one of the strongest empirical sections of the paper. It is also methodologically constrained: all models use the same TrajCast-style equivariant backbone, supervised adaptation, and rollout protocol, so the comparison isolates the effect of OPF pretraining more cleanly than the cross-domain experiments. Nonetheless, the molecular evaluation remains a finite benchmark of force-free trajectory emulation and does not establish conservation of energy, symplectic structure, or physical validity outside the data distribution.

Factor coordinates as a scientific analysis interface

The third evaluation group asks whether factor coordinates can support scientific hypothesis generation or diagnosis rather than only prediction.

In the biological application, analysis of OPF coordinates nominates combined IL-18 stimulation and NT5E/CD73 blockade as a candidate intervention. The paper reports supporting evidence in Huh7โ€“PBMC co-cultures, three patient-derived hepatocellular carcinoma organoid specimens, three tumor-fragment specimens, and immunocompetent mice. In the organoid and tumor-fragment experiments, the combined treatment produces the strongest reported tumor-cell killing together with increased immune-cell activation.

Figure 7

Figure 7: The combined IL-18 and CD73-blockade condition shows the strongest reported antitumor activity across organoid and tumor-fragment samples.

This is an externally grounded result, but its evidentiary interpretation requires precision. The model nominates a biologically testable intervention, and experiments provide support for its efficacy in the reported systems. The result does not demonstrate that OPF identifies a causal factor or that the treatmentโ€™s mechanism is represented in a uniquely identifiable latent coordinate. The paper itself acknowledges that orthogonal factors do not establish causal mechanisms.

The orbital experiment offers a more controlled diagnostic. From simulated positionโ€“velocity trajectories without physical labels, spectral analysis of learned factor modes recovers the relationship between orbital frequency and semimajor axis. The fitted slope is zt(k)=PkโŠคzt.z_t^{(k)} = P_k^\top z_t.4 with zt(k)=PkโŠคzt.z_t^{(k)} = P_k^\top z_t.5, closely matching the Keplerian exponent zt(k)=PkโŠคzt.z_t^{(k)} = P_k^\top z_t.6.

Figure 8

Figure 8: Spectral modes extracted from JEPA recover the Keplerian scaling relation with fitted slope zt(k)=PkโŠคzt.z_t^{(k)} = P_k^\top z_t.7 and zt(k)=PkโŠคzt.z_t^{(k)} = P_k^\top z_t.8.

The orbital result demonstrates that predictive latent coordinates can expose a known dynamical regularity. Its limitation is equally clear: it is based on one analyzed run and simulated trajectories whose governing law is already known. It validates the diagnostic procedure against an established law, but does not establish that the same procedure reliably discovers unknown laws in uncontrolled scientific data.

Limitations and open questions

The central generality claim is architectural rather than representational. JEPA-Anything does not use identical encoders, tokenizers, losses, or data regimes across domains. Each instantiation adds OPF to a domain-specific base objective, and several experiments include task-specific decoders, probes, or adaptation stages. The evidence therefore supports a reusable factorization mechanism, not a single universal world model.

The empirical comparisons are also uneven in strength. Some experiments are carefully capacity-matched against monolithic JEPA, whereas the broader domain comparisons include additional baseline differences and specialized pipelines. The clinical section reports a qualitative ranking in the supplied manuscript but does not state the numerical PRAUC values. The control results are environment-dependent, with Hopper favoring standard JEPA. Long-horizon improvements diminish in the 50-step Burgers evaluation, and recursive prediction remains subject to compounding error.

The semantics of the learned factors remain underdetermined. Orthogonality guarantees geometric non-overlap and, approximately, stable synthesis; it does not guarantee statistical independence, causal separability, object alignment, or unique semantic interpretation. This distinction is consistent with the broader identifiability limitations of unsupervised disentanglement (Hรฉnaff et al., 2019). The paperโ€™s factor interventions establish functional necessity in selected tasks, but not a general correspondence between individual factors and real-world mechanisms.

Finally, the scientific-analysis results require stronger prospective evaluation. The cancer intervention is supported by external experiments, but the manuscript does not establish whether the nomination process was preregistered, how many alternatives were screened, or how often comparable hypotheses fail. The orbital analysis uses a single analyzed run and a known physical law. Specific open questions are whether OPF retains its advantage under larger-scale distribution shift, whether factor identities remain stable across seeds and domains, how uncertainty should be calibrated for intervention selection, and whether factors can be revised when external evidence contradicts the predicted state.

Conclusion

JEPA-Anything proposes OPF as a mechanism for organizing latent predictive capacity into complementary, active, and synthesizable subspaces. Across representation learning, intervention prediction, autoregressive dynamics, planning, molecular forecasting, and scientific analysis, the reported results generally favor factorized JEPA over matched monolithic alternatives. The strongest evidence concerns CITRIS intervention prediction, the ten-task dynamics benchmark, molecular forecasting across four systems, and the near-unit-conditioned factor geometry.

The paperโ€™s more ambitious claims require a narrower interpretation. OPF provides a common predictive interface across heterogeneous domain adapters, but it does not by itself produce domain-independent representations, causal factors, or universally superior control policies. Its principal contribution is a structured latent-state parameterization that improves predictive capacity allocation and makes factor coordinates available for downstream diagnostics. The remaining question is whether these benefits persist when domains are less controlled, interventions are genuinely open-ended, and scientific hypotheses must be evaluated prospectively rather than against known laws or selected experimental systems.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Explain it Like I'm 14

1. What is this paper about?

The paper introduces a machine-learning system called JEPA-Anything. Its goal is to help computers build โ€œworld models.โ€

A world model is an internal picture of how something works. For example:

  • A robot may use one to predict what will happen after it moves.
  • A weather model may predict tomorrowโ€™s temperature and storms.
  • A medical model may predict a patientโ€™s future health problems.
  • A biology model may predict how cells react to a drug.
  • A physics model may predict how molecules or planets move.

The authors ask whether the same basic learning method can work for many very different kinds of data, instead of needing a completely different model for every field.

Their answer is a system called JEPA-Anything, which divides information into several separate but connected parts. The authors call this process orthogonal predictive factorization, or OPF.

2. What questions did the researchers investigate?

The paper focuses on several main questions:

  1. Can one learning approach work across many different โ€œworldsโ€? The researchers test vision, biology, healthcare, robots, molecules, physical systems, and weather.
  2. Does dividing information into separate factors improve prediction? For example, in a game, one factor might represent an objectโ€™s position while another represents its movement.
  3. Can the model predict the results of actions or interventions? An intervention means deliberately changing something, such as giving a drug, moving a robot, or changing a game object.
  4. Can the model handle new situations that were not in its training data? This is called out-of-distribution generalization. It is similar to learning addition problems and then being asked to solve a new combination of numbers.
  5. Can predictions remain useful over many steps? The model is sometimes asked to predict the future repeatedly: its first prediction becomes the starting point for the next prediction, and so on.
  6. Can the model help scientists discover useful patterns? The researchers investigate whether the modelโ€™s internal factors can suggest biological experiments or reveal known physical laws.

3. How does the method work?

The basic JEPA idea

JEPA stands for Joint-Embedding Predictive Architecture.

Instead of trying to recreate every tiny detail of an input, JEPA learns a shorter internal description, called a latent representation.

For example, when looking at a photo of a bicycle, the model does not need to remember every individual pixel. It may only need to understand useful information such as:

  • where the bicycle is,
  • its shape,
  • its direction,
  • and what might happen if it moves.

The model receives some information called the context and tries to predict another part called the target.

This is like seeing part of a puzzle and predicting what the missing piece should look like. However, the model predicts the missing information in its internal representation rather than directly guessing every pixel or number.

What JEPA-Anything changes

A normal JEPA uses one large internal description and one main prediction path.

JEPA-Anything divides this description into several smaller parts, or factors. Each factor has its own prediction pathway.

A simple analogy is organizing a school backpack:

  • one section holds books,
  • one holds pens,
  • one holds sports equipment,
  • and one holds lunch.

The sections are different, but together they describe the whole backpack.

In JEPA-Anything, the factors are not manually labeled. The system learns how to divide information based on what can be predicted. The researchers also encourage the factors not to duplicate one another. This is done with orthogonality constraints, which are mathematical rules that push the factors to represent different directions of information.

The model also uses two safeguards:

  • Factor activity: keeps every factor useful instead of allowing some to become empty or ignored.
  • Encoder activity: prevents the whole representation from collapsing into a nearly constant answer.

After predicting the separate factors, the model combines them again into a complete predicted state. This complete state can be used for:

  • predicting the next moment,
  • planning actions,
  • forecasting a patientโ€™s future,
  • simulating molecules,
  • or analyzing scientific patterns.

Training process

The general training process is:

  1. Convert the data into a form the model can process.
  2. Show the model part of the information.
  3. Ask it to predict another part.
  4. Divide the target information into several factors.
  5. Give each factor its own predictor.
  6. Compare the predictions with the correct answers.
  7. Encourage the factors to remain different and active.
  8. Repeat this process many times.

The same central procedure is used across all domains, although each domain has its own way of representing data. For instance, an image uses patches, while a medical record uses events over time.

4. What did the researchers find?

The researchers tested JEPA-Anything in seven broad areas:

  • computer vision,
  • single-cell biology,
  • clinical forecasting,
  • robot control,
  • molecular motion,
  • physical fields,
  • and weather prediction.

They compared it with regular JEPA and other suitable models. The paper reports several important results.

Better visual and biological representations

In visual experiments, JEPA-Anything was better at recognizing combinations of:

  • where something changed, and
  • what type of change happened.

It also reduced the number of cases where the model confused or โ€œcollapsedโ€ different visual situations together.

In single-cell experiments, it performed better at:

  • grouping cells into the correct types,
  • predicting how cells respond to changes,
  • and transferring knowledge to new biological data.

For example, its reported results were higher than regular Cell-JEPA on both cell clustering and perturbation-response prediction.

Improved clinical forecasting

The model predicted more than 1,000 possible future clinical events from patient histories.

The factorized version achieved a higher average precision-recall score than the regular JEPA version. In simple terms, it was better at identifying which health events were likely to happen, especially when many events were rare.

Better intervention prediction

In the Interventional Pong experiment, the model was shown a game state and information about what had been changed. It then predicted the next state.

Compared with standard JEPA, JEPA-Anything reduced the error for a single intervention by about 34.8%.

It also improved predictions when several changes happened together, even when that exact combination had not appeared during training. This suggests that the model could combine separate learned rules instead of simply memorizing examples.

Better performance across dynamics tasks

The researchers tested ten dynamics tasks involving robots, physical systems, weather, and other changing environments.

The paper reports that JEPA-Anything improved the chosen prediction measures on all ten tasks compared with matched standard JEPA models.

This is important because predicting one step is relatively easy, while predicting several steps can be difficult. Small mistakes can grow larger over time, like a tiny navigation error causing someone to end up far from their destination.

More accurate molecular rollouts

The model was tested on four molecular systems, including water, quartz, paracetamol, and benzene.

It achieved the lowest reported error for both:

  • one-step predictions, and
  • 100-step predictions.

A 100-step rollout means the model repeatedly predicts the next molecular state 100 times. Performing well over such a long sequence suggests that its internal state remains relatively stable.

Useful scientific patterns

The researchers also used the modelโ€™s factors for scientific analysis.

In biology, a factor-based analysis suggested a possible intervention. The authors report that this suggestion received supporting evidence from experiments involving:

  • cell co-cultures,
  • patient-derived organoids,
  • tumor fragments,
  • and mice.

The paper also studied simulated orbital motion. The modelโ€™s internal modes recovered a relationship similar to Keplerโ€™s law, which describes how the time taken by an orbit relates to its size. The fitted slope was approximately โˆ’1.4991, close to the expected value of โˆ’1.5 in the analysis used by the authors.

This does not mean the model independently discovered all of physics, but it suggests that its internal representations can reflect meaningful scientific structure.

5. Why are these findings important?

Many machine-learning systems are designed for only one type of information. A model trained for images may not work well with medical records or molecular trajectories.

JEPA-Anything suggests that a shared learning principle can be reused across many areas. The details of the data still change, but the central idea remains the same:

Learn a useful internal state, divide it into complementary predictive parts, and use those parts to predict what happens next.

The separation into factors may help because different kinds of information do not compete as strongly during training. For example, the model may be able to represent both โ€œwhere something isโ€ and โ€œhow it changesโ€ without allowing one type of information to overwhelm the other.

The orthogonality rule also makes the factors mathematically stable. In the paperโ€™s tests, the factors covered the state space more completely and were much less redundant than unconstrained prediction heads.

6. Potential impact and limitations

If the results hold up in further studies, this approach could help create more flexible models for:

  • robots that plan before acting,
  • medical systems that forecast patient risks,
  • drug and cell research,
  • weather and climate prediction,
  • molecular simulation,
  • and scientific discovery.

A particularly interesting possibility is that the same model could both predict what will happen and help researchers decide what experiment to try next.

However, the results should be interpreted carefully. The experiments use different datasets, model designs, and evaluation measures across different fields. Success in these tests does not prove that one model can solve every real-world problem. The biological discoveries, for example, still require extensive independent laboratory testing.

Simple conclusion

JEPA-Anything is a method for teaching computers to understand changing systems. It does this by building an internal description of the system, splitting that description into different useful parts, and predicting each part separately.

The paper reports that this approach improves performance in vision, biology, healthcare, robotics, physics, weather, and molecular modeling. It also appears to make long-term predictions more stable and can expose patterns that are useful for science.

In short, the research suggests that many very different problems may share a common learning idea: understand a system by breaking its future behavior into separate pieces that can be predicted and recombined.

Knowledge Gaps

Knowledge gaps, limitations, and open questions

  • Incomplete empirical record: The provided paper text ends during the dynamics-results section, so the numerical results, analyses, and conclusions for several reported experimentsโ€”including weather, physical fields, locomotion, molecular dynamics, and possibly later appendicesโ€”are not available for independent assessment.
  • Limited evidence for domain agnosticism: Although the framework is applied across seven domains, each domain still uses a domain-specific adapter, tokenizer, encoder, view sampler, base loss, and readout. The paper does not establish how much performance depends on these specialized components rather than on the shared OPF core.
  • No cross-domain joint pretraining experiment: The paper does not test whether a single JEPA model can be trained jointly on multiple heterogeneous domains and transfer predictive factors between them. The claimed common interface is evaluated mainly through separate domain-specific instantiations.
  • Unclear contribution of each regularizer: Orthogonality, factor-activity, encoder-variance, and predictive losses are introduced together, but comprehensive ablations isolating each term and their interactions are not reported in the provided text.
  • Insufficient analysis of factor-count and factor-width selection: Most experiments use four factors, while other configurations are not systematically compared. It remains unclear how performance changes with the number of factors, unequal factor widths, latent dimensionality, or dynamically chosen factor capacity.
  • Factor semantics are not shown to be identifiable: The factors are defined only up to rotations, permutations, and other equivalent parameterizations within their subspaces. The paper does not establish whether factors are stable across random seeds, datasets, training runs, or model architectures.
  • Orthogonality may not imply semantic disentanglement: The geometric results demonstrate non-overlapping subspaces and stable synthesis, but they do not show that each factor corresponds to a distinct causal mechanism, physical variable, or interpretable predictive mode.
  • Potential conflict between orthogonality and useful representations: Enforcing mutually orthogonal subspaces may separate predictive directions that are statistically or causally dependent. The paper does not investigate whether this constraint harms performance when relevant factors are correlated or interact nonlinearly.
  • Approximate-training behavior is insufficiently characterized: The formal guarantees assume exact orthogonality, whereas trained models use penalty-based approximate orthogonality and pseudoinverse synthesis. The relationship between finite penalty strength, conditioning, prediction error, and rollout stability is not systematically quantified.
  • No comparison with broader factorized or disentangled baselines: The principal comparison is with monolithic JEPA and selected domain-specific baselines. The paper does not compare OPF against alternative approaches such as mixture-of-experts predictors, low-rank factorization, independent subspace predictors, causal representation learning, or explicit object-centric world models.
  • Unclear fairness of the matched comparisons: Adding multiple predictors and regularization terms may change optimization dynamics, effective parameterization, or inductive bias even when nominal model budgets are matched. Parameter counts, FLOPs, wall-clock training time, memory use, and hyperparameter-search budgets are not fully compared.
  • Hyperparameter sensitivity is unresolved: The paper does not report sensitivity to orthogonality, factor-activity, and encoder-variance coefficients, EMA momentum, activity thresholds, mask ratios, predictor architecture, or target-view sampling.
  • Statistical significance is incomplete: Results are generally summarized over five seeds, with some experiments using only three seeds or one analyzed run. Confidence intervals, hypothesis tests, effect-size uncertainty, and corrections for multiple comparisons are not consistently provided.
  • Limited robustness to distribution shift: The reported OOD settings involve selected held-out combinations, episodes, time periods, or frequencies. Broader shiftsโ€”new environments, sensors, institutions, molecular compositions, weather regimes, intervention mechanisms, or missing-data patternsโ€”remain untested.
  • Long-horizon stability is only partially demonstrated: Six-step rollouts in several tasks and 100-step molecular rollouts do not establish stability over substantially longer horizons. The paper does not determine whether factorization delays error accumulation or prevents eventual divergence.
  • Closed-loop planning evidence is limited: The framework is used with planners such as CEM, but the paper does not clearly separate improvements due to the learned world model from improvements due to planner settings, reward design, action distributions, or model-predictive-control implementation.
  • Intervention generalization is narrow: CITRIS evaluates withheld combinations of known intervention types, but the paper does not test unseen intervention mechanisms, continuous intervention magnitudes, noisy intervention labels, imperfect interventions, or interventions that alter the underlying transition dynamics.
  • Causal interpretation is not established: Improved intervention prediction does not by itself demonstrate causal representation learning. The paper does not show that OPF factors correspond to causal variables or support valid counterfactual predictions under unobserved confounding.
  • Clinical evaluation lacks external validation: Disease forecasting uses a single fixed patient-level cohort split. External cohorts, temporal validation, cross-institution transfer, demographic subgroup performance, calibration, and robustness to coding or measurement changes are not evaluated.
  • Clinical utility remains uncertain: The paper reports mean PRAUC across more than 1,000 events but does not assess calibration, decision-curve utility, clinically meaningful thresholds, time-to-event discrimination, treatment-selection value, or prospective usefulness.
  • Potential data leakage and preprocessing risks are not fully documented: For the longitudinal clinical and biological settings, the paper does not provide enough detail to verify that future information, repeated patients, batch identifiers, or post-intervention measurements cannot enter the context or target representations.
  • Single-cell transfer claims are limited: Biological representation experiments rely on particular datasets and a kidney-cell pretraining source. Generalization across species, tissues, sequencing technologies, laboratories, disease states, and perturbation modalities remains unresolved.
  • Perturbation prediction may be dataset-specific: The strong Adamson and Norman results do not establish performance on unseen genes, unseen drug combinations, dosage changes, temporal responses, or perturbations outside the training assay distribution.
  • Wet-lab validation has limited scale: The biological intervention claim is supported by three organoids, three tumor fragments, and external mouse validation, but the paper does not report sufficiently broad replication, sample-size justification, randomization, blinding, negative controls, dose-response analysis, or independent prospective cohort validation.
  • The biological nomination pipeline is underspecified: It is unclear how candidate interventions were selected from factor coordinates, how many hypotheses were tested, whether selection occurred before experiments, and how multiple-testing or researcher degrees of freedom were controlled.
  • Orbital-law recovery may be circular or underpowered: The Keplerian scaling result is based on one analyzed run and a known analytic law. The paper does not show robustness across initial conditions, noise levels, architectures, seeds, trajectory lengths, or systems whose governing laws are unknown.
  • Scientific interpretability is not benchmarked: The paper does not compare factor-based scientific discovery against conventional latent representations, supervised physical variables, sparse regression, symbolic regression, or domain-specific spectral methods.
  • Observation noise and missingness are underexplored: Real clinical, biological, molecular, and weather data contain measurement noise, irregular sampling, missing variables, and corrupted observations, but systematic robustness experiments are not described.
  • Partial observability is not rigorously evaluated: The framework is presented as a world model for partially observed systems, yet the paper does not quantify how performance changes with observation sparsity, delayed observations, hidden state dimensions, or ambiguous contextโ€“target relations.
  • The target-encoder design may introduce trainingโ€“deployment mismatch: Targets are generated by an EMA encoder, while downstream operational predictions use the online encoder and synthesized states. The effects of encoder drift, EMA momentum, and mismatch between online and target representations on long rollouts are not analyzed.
  • Recursive decoding and representation drift are insufficiently examined: The paper reports latent rollouts, but it does not fully evaluate whether synthesized states remain on the data manifold, whether decoders amplify latent errors, or whether repeated predictions create progressively unrealistic states.
  • Computational scalability is unclear: The cost of maintaining multiple predictors, projectors, orthogonality penalties, pseudoinverse synthesis, and domain-specific adapters is not compared with monolithic JEPA at larger latent widths, factor counts, sequence lengths, or dataset scales.
  • No principled procedure is given for selecting the predictive factorization: The framework assumes a fixed partition into equal-width subspaces. It remains open how to detect the appropriate number, granularity, hierarchy, or temporal persistence of predictive factors from data.
  • The frameworkโ€™s failure modes are not characterized: The paper does not identify conditions under which OPF degrades performance, such as weak contextโ€“target dependence, highly entangled dynamics, stochastic transitions, multimodal futures, nonstationary systems, or targets dominated by unpredictable information.
  • Stochastic and multimodal futures are insufficiently addressed: The predictors appear to regress conditional means using squared error. The paper does not evaluate whether JEPA can represent uncertainty, multiple plausible futures, aleatoric noise, or risk-sensitive predictions.
  • Transferability of learned factors remains unknown: It is not shown whether factor projectors or predictor branches can be reused across tasks, environments, interventions, or datasets, despite the paperโ€™s emphasis on reusable predictive structure.
  • The relationship between representation-mode and world-model-mode performance is unclear: The paper uses the online encoder for downstream readouts and retains projectors and predictors for operational rollouts, but it does not determine whether improvements in one mode predict improvements in the other.
  • The broad โ€œAnythingโ€ claim remains bounded by manually designed interfaces: Because the domain adapter must define tokens, descriptors, contextโ€“target semantics, and structural views, the method does not yet demonstrate fully automatic applicability to arbitrary new domains.

Practical Applications

Immediate Applications

The reported results support several applications that could be deployed now as research prototypes, decision-support systems, or components within existing machine-learning workflows. These uses generally do not require autonomous control or direct clinical deployment.

  • Reusable predictive representations for multimodal AI
    • Sectors: AI infrastructure, computer vision, bioinformatics, scientific machine learning.
    • Organizations can add JEPA-Anythingโ€™s orthogonal predictive factorization (OPF) to existing ViT, Transformer, GNN, MLP, or equivariant-model pipelines. The online encoder can provide reusable embeddings for classification, clustering, retrieval, anomaly detection, or regression.
    • A practical workflow is: tokenize domain data, define context and target views, train with the OPF objective, discard the target encoder and prediction heads, and reuse the online encoder with task-specific readouts.
    • Dependencies: The context and target must describe statistically related states of the same underlying system. Domain-specific tokenization, descriptors, and sampling remain necessary; the method does not eliminate the need for suitable data engineering.
  • Improved single-cell representation and perturbation analysis
    • Sector: Biotechnology and drug discovery.
    • JEPA-style cell representations can support cell-type clustering, cross-dataset transfer, zero-shot analysis, and prediction of gene-expression responses to perturbations. The paper reports improvements on PBMC clustering and Adamson and Norman perturbation datasets.
    • A deployable tool could provide a cell-state embedding service for ranking perturbations, identifying responsive cell populations, or prioritizing experiments before laboratory testing.
    • Dependencies: Predictions depend on the relevance and coverage of the training cell types, perturbations, and biological contexts. Batch effects, assay differences, and distribution shifts may reduce reliability. Model outputs should be treated as hypotheses rather than biological facts.
  • Clinical event-risk forecasting as decision support
    • Sector: Healthcare and health insurance analytics.
    • The model can synthesize a predicted future patient state from longitudinal records and generate risk scores for many future events, including the paperโ€™s setting with more than 1,000 event types.
    • Potential products include population-health dashboards, patient-monitoring systems, trial-enrollment filters, and clinician-facing alerts for prioritizing chart review or follow-up.
    • Dependencies: Deployment requires external validation, calibration, subgroup fairness assessment, privacy-preserving infrastructure, and compatibility with irregular, incomplete, and institution-specific records. The reported PRAUC improvement does not establish clinical utility or safety, and the system should not independently diagnose or prescribe.
  • Intervention-conditioned forecasting
    • Sectors: Robotics, simulation, gaming, industrial control, and causal machine learning.
    • Given a current state and an intervention label, the model can predict the next state and estimate the effects of individual or combined interventions. The Interventional Pong results suggest improved compositional generalization to unseen combinations of interventions.
    • A practical workflow could use factorized predictions to compare โ€œwhat-ifโ€ scenarios, such as changing multiple operating parameters, applying several robot actions, or modifying multiple game-state variables.
    • Dependencies: Intervention labels must be defined consistently, and the training data must contain enough variation to identify the effects of individual factors. Performance on simple simulated environments does not guarantee validity for real-world causal interventions.
  • Short-horizon forecasting for physical and environmental systems
    • Sectors: Weather, energy, computational physics, engineering, and climate analytics.
    • The shared factorized architecture can be adapted to predict physical fields, weather states, or PDE trajectories from current fields and known forcing variables.
    • Immediate prototypes include accelerated surrogate models for simulation, short-range weather downscaling, wind or temperature-field prediction, and engineering parameter sweeps.
    • Dependencies: Numerical stability, conservation laws, resolution, boundary conditions, and the quality of forcing data are critical. The reported rollout tests are limited in horizon and task configuration; production systems would require longer evaluations and comparison with physics-based solvers.
  • Molecular trajectory prediction for computational chemistry
    • Sector: Pharmaceutical research and materials science.
    • The molecular implementation can forecast latent molecular configurations and support rapid screening of molecular dynamics trajectories. The paper reports the lowest compared one-step and 100-step errors across four molecular systems.
    • Potential tools include approximate trajectory simulators, conformational-state exploration, pre-screening of candidate compounds, and initialization of more expensive molecular-dynamics calculations.
    • Dependencies: The current evidence covers four systems and does not establish accuracy for arbitrary molecules, reaction mechanisms, solvents, temperatures, or long physical timescales. Symmetry handling, force-field consistency, and physical validity checks are required before scientific use.
  • Latent-state diagnostics and model monitoring
    • Sectors: Enterprise AI, software engineering, scientific computing, and safety engineering.
    • The factor coordinates can be logged and analyzed separately to identify which predictive modes are active, redundant, unstable, or missing. Orthogonality provides a numerically stable coordinate system for comparing predicted and observed states.
    • This could produce tools for factor-activity dashboards, drift detection, rollout-error attribution, and failure analysis in deployed predictive models.
    • Dependencies: Orthogonal factors are not automatically human-interpretable. Their semantic meaning may change across datasets, training runs, or domains, so factor-level explanations require independent validation.
  • Educational and research tooling
    • Sector: Academia and technical education.
    • The open-source implementation and published model collection can serve as a common experimental framework for comparing latent prediction across vision, biology, clinical records, control, weather, and molecular dynamics.
    • Researchers can use it to study representation learning, world models, intervention prediction, OOD generalization, and multi-step error accumulation under a shared interface.
    • Dependencies: Reproducibility depends on access to the required datasets, computational resources, precise implementation details, and corrected handling of the paperโ€™s domain-specific adapters and evaluation protocols.

Long-Term Applications

The following applications are plausible extensions of the findings but require additional research, broader validation, or safety-critical engineering before deployment.

  • Model-based robot planning and control
    • Sectors: Robotics, autonomous vehicles, warehouse automation, and industrial manufacturing.
    • Retaining the factor predictors enables latent transition rollouts that can be scored by a planner. A future system could simulate candidate action sequences, predict their consequences, and select actions using model-predictive control or a cross-entropy method planner.
    • Factorized states may be useful for separately modeling object motion, contact dynamics, actuator effects, and environmental changes.
    • Dependencies: Real robots introduce partial observability, sensor noise, unknown dynamics, actuator delay, and safety constraints. Long-horizon compounding error, rare events, sim-to-real transfer, and reliable uncertainty estimation must be addressed before closed-loop deployment.
  • Counterfactual clinical planning
    • Sector: Healthcare and precision medicine.
    • A future clinical world model could predict how a patientโ€™s latent health state might evolve under alternative treatments, monitoring schedules, or interventions, then expose those trajectories to a clinical decision-support system.
    • Possible products include treatment-comparison simulators, adaptive trial-planning tools, and individualized disease-progression models.
    • Dependencies: Observational health records contain confounding, selection bias, missing-not-at-random data, and treatment-policy changes. Valid counterfactual use requires causal identification, prospective studies, uncertainty estimates, clinician oversight, regulatory review, and rigorous evaluation of harms from incorrect recommendations.
  • Biology-guided intervention discovery
    • Sector: Oncology, immunology, cell therapy, and drug discovery.
    • The factor-analysis interface could nominate biological interventions by associating predictive latent modes with cellular response patterns. The paper reports external support for a factor-nominated intervention in cell co-cultures, organoids, tumor fragments, and mice.
    • A longer-term workflow could be: learn factorized cell states, identify intervention-sensitive factors, rank candidate perturbations, test them in organoids or animal models, and feed experimental results back into the model.
    • Dependencies: The reported validation is promising but limited in scale and biological scope. Translating latent associations into therapeutic mechanisms requires replication, dose-response studies, toxicity testing, mechanistic experiments, and eventual human trials.
  • Long-range weather, climate, and energy forecasting
    • Sectors: Meteorology, climate science, electric-grid operations, renewable-energy integration, and disaster response.
    • Factorized latent dynamics could support multi-step weather forecasting, extreme-event scenario generation, renewable-power forecasting, and grid planning under uncertain wind or solar availability.
    • A product might combine a learned world model with a physics-based solver, ensemble uncertainty estimation, and an operator dashboard for scenario analysis.
    • Dependencies: Small systematic errors can become severe over long horizons. Deployment requires calibration, physical-consistency constraints, high-resolution validation, rare-event testing, uncertainty-aware ensembles, and safeguards against using a model outside its training climate regime.
  • Accelerated scientific simulation and digital twins
    • Sectors: Aerospace, materials, fluid mechanics, manufacturing, and infrastructure.
    • JEPA-based latent rollouts could act as surrogate simulators for digital twins of turbines, factories, fluid systems, chemical processes, or materials. Orthogonal factors may organize distinct spatial scales, entities, or dynamical modes.
    • Such systems could enable rapid design optimization, predictive maintenance, parameter inversion, and interactive engineering simulation.
    • Dependencies: Digital twins require continual data assimilation, uncertainty quantification, conservation-law compliance, and validation against high-fidelity measurements. A learned model should complementโ€”not silently replaceโ€”trusted numerical models in safety-critical applications.
  • Molecular design and reaction planning
    • Sector: Pharmaceutical and materials industries.
    • Extending the molecular rollout capability could enable models that explore conformational landscapes, estimate transition pathways, or guide the design of molecules with desired dynamical properties.
    • A potential workflow would couple factorized molecular dynamics with generative design, docking, quantum-chemistry refinement, and laboratory synthesis.
    • Dependencies: Accurate long-horizon dynamics, chemical validity, reaction modeling, solvent and temperature effects, and integration with quantum or experimental validation remain unresolved. Low trajectory error alone does not ensure correct reaction energetics or useful drug properties.
  • General-purpose compositional world models
    • Sectors: Artificial general intelligence research, simulation, interactive software, and autonomous agents.
    • The paperโ€™s central architectural claim could support a common world-model interface spanning images, sequences, graphs, sets, patient records, molecular systems, and physical fields. Agents might reuse factorized states across prediction, planning, intervention simulation, and task-specific readouts.
    • Potential systems include interactive simulators, embodied agents, scientific copilots, and software agents that model application-specific environments.
    • Dependencies: The current evidence demonstrates a shared learning principle, not a universal model that transfers directly between domains. Cross-domain transfer requires compatible representations, scalable adapters, semantic alignment, memory, uncertainty handling, and methods for resolving conflicting or changing factor meanings.
  • Policy simulation and public-sector planning
    • Sector: Public health, transportation, energy policy, and emergency management.
    • With reliable causal and temporal data, factorized predictive models could simulate policy interventions, such as vaccination strategies, traffic restrictions, energy incentives, or disaster-response actions.
    • A policy tool could expose alternative intervention combinations and estimate short- and medium-term system trajectories.
    • Dependencies: Policy environments are highly confounded, socioeconomically heterogeneous, and subject to feedback effects. Deployment requires causal validity, transparency, fairness analysis, stakeholder review, uncertainty communication, and governance preventing model forecasts from being treated as deterministic predictions.
  • Factor-based scientific discovery and theory testing
    • Sector: Physics, astronomy, biology, and applied mathematics.
    • The recovery of a Keplerian scaling exponent from latent orbital modes suggests that factor coordinates may help expose scientifically meaningful dynamical structure. Future systems could use factor spectra to identify conserved quantities, scaling laws, phase transitions, or hidden modes in complex datasets.
    • A practical research workflow would combine unsupervised factor discovery with symbolic regression, dimensional analysis, and targeted experimental validation.
    • Dependencies: Latent factors are learned for predictability, not guaranteed to correspond to physical variables. Scientific interpretation therefore requires multiple datasets, invariance tests, perturbation studies, known-law comparisons, and independent experiments rather than relying on visual or statistical alignment alone.

Glossary

  • Autoregressive rollout: Sequential prediction in which each predicted state is fed back as input for the next prediction. โ€œan autoregressive rolloutโ€
  • CausalWorld: A simulated environment for studying causal reasoning and robot control. โ€œCausalWorld closed-loop controlโ€
  • Condition number: A numerical measure of how sensitive a matrix-based computation is to errors or perturbations. โ€œits condition number without boundโ€
  • Context encoder: A neural network that converts observed contextual information into a latent representation. โ€œA context encoder summarizes what is observedโ€
  • Cross-factor orthogonality: A constraint requiring different learned factor subspaces to represent mutually perpendicular directions. โ€œthe second discourages different factors from repeatedly encoding the same directionsโ€
  • Domain adapter: A component that converts domain-specific observations into a common token and descriptor representation. โ€œA domain adapter Aฮด\mathcal{A}_{\delta} maps xx into content tokensโ€
  • Exogenous input: An input determined outside the modeled system, such as an action, intervention, or external forcing. โ€œlet ฮพt\xi_t denote the exogenous input at step ttโ€
  • Exponential moving average (EMA): A weighted running average that updates parameters gradually using the current parameters and their previous averaged values. โ€œThe target parameters are updated as an exponential moving averageโ€
  • Factor activity: The extent to which coordinates within a learned predictive factor vary meaningfully across examples. โ€œa per-factor activity floor keeps every projected target coordinate active across samplesโ€
  • Factorized predictive state: A latent state decomposed into multiple separately predicted components. โ€œpredicted components can be synthesized into a complete latent stateโ€
  • Free rollout: Repeated model prediction without replacing predicted states with ground-truth states. โ€œWe additionally evaluate six-step free rollout.โ€
  • Injective alignment: A one-to-one matching between elements of two sets, preventing multiple elements from being assigned to the same counterpart. โ€œinjective Hungarian alignmentโ€
  • Intervention-conditioned prediction: Prediction of a future state given an explicitly specified external change to the system. โ€œintervention-conditioned dynamicsโ€
  • Joint-embedding predictive architecture (JEPA): A representation-learning architecture that predicts a target embedding from a context embedding rather than reconstructing raw observations. โ€œJoint-embedding predictive architectures (JEPAs) provide a natural mechanism for learning such statesโ€
  • Keplerian scaling: A relationship between orbital quantities governed by Keplerโ€™s laws of motion. โ€œthe Keplerian scaling exponentโ€
  • Latent dynamics: The evolution of hidden, learned representations over time. โ€œlearned latent dynamics can support planningโ€
  • Latent world model: A model that constructs an internal hidden state of a system and uses it to predict other states of that system. โ€œa model that constructs a latent state from context and uses it to predict another state of the same underlying worldโ€
  • Long-horizon dynamics: System behavior predicted across many successive time steps. โ€œout-of-distribution generalization, and long-horizon dynamicsโ€
  • Masked prediction: Learning to predict information that has been intentionally hidden from the modelโ€™s input. โ€œmasked image predictionโ€
  • Mean squared error (MSE): The average of squared differences between predicted and reference values. โ€œWe report the mean four-channel MSEโ€
  • Mooreโ€“Penrose pseudoinverse: A generalized matrix inverse used when a matrix is non-square or singular. โ€œthrough the Moore--Penrose pseudoinverse of the analysis mapโ€
  • Molecular dynamics: Computational modeling of the time-dependent motion of atoms and molecules. โ€œmolecular dynamicsโ€
  • Monolithic target embedding: A single undivided latent representation used as the prediction target. โ€œone target embedding and one prediction pathwayโ€
  • Out-of-distribution (OOD) generalization: The ability to perform well on data or conditions that differ from those used during training. โ€œOut-of-distribution and long-horizon dynamicsโ€
  • Orthogonal direct sum: A decomposition of a vector space into mutually perpendicular subspaces whose combination spans the whole space. โ€œthe factor spaces form an orthogonal direct sumโ€
  • Orthogonal predictive factorization (OPF): A method that divides a latent target into orthogonal subspaces and predicts each with a dedicated pathway. โ€œWe introduce orthogonal predictive factorization, which partitions a latent target into learned subspaces with dedicated predictorsโ€
  • Orthogonality regularization: A training penalty that encourages learned vectors or subspaces to be perpendicular. โ€œThe learned subspaces are therefore predictive and orthogonality-regularized.โ€
  • Out-of-distribution forecasting: Prediction for states, trajectories, or conditions outside the training distribution. โ€œreadout, OOD forecasting, planning, rollout stability, and scientific diagnosticsโ€
  • PDEBench: A benchmark suite for machine-learning models of partial differential equations. โ€œPDEBench, and WeatherBench2โ€
  • Partial differential equation (PDE): An equation involving derivatives of a function with respect to multiple continuous variables. โ€œAPEbench Burgers and KSโ€
  • Predictive factor: A learned latent component that captures a distinct aspect of a target that can be inferred from context. โ€œEach factor has a corresponding predictorโ€
  • Predictive state: An internal representation containing information needed to anticipate future or otherwise unobserved system states. โ€œthe central object is a predictive stateโ€
  • Representation learning: Learning useful features or embeddings directly from data rather than defining them manually. โ€œWe evaluate JEPA across seven domainsโ€
  • Singular value: A nonnegative value describing the scaling of a matrix along one of its principal directions. โ€œMinimum singular value ฯƒminโก(P)\sigma_{\min}(P)โ€
  • Spectral analysis: The study of a system through frequency- or mode-based decompositions of its representations or dynamics. โ€œlatent spectral modesโ€
  • Stop-gradient: An operation that prevents gradients from being propagated through a specified tensor during optimization. โ€œStop-gradient is applied to the target-encoder outputโ€
  • Target encoder: The encoder that produces the latent representation serving as the prediction target. โ€œA target encoder produces a latent targetโ€
  • Trajectory rollout: Sequential generation of future states by repeatedly applying a learned transition model. โ€œRepeated application defines a latent rollout.โ€
  • Variance collapse: A failure mode in which learned representations become nearly constant and lose informative variation. โ€œthe second sends a direct anti-collapse gradient to the online encoderโ€
  • WeatherBench2: A benchmark for evaluating machine-learning systems that forecast weather variables. โ€œPDEBench, and WeatherBench2โ€
  • Zero-shot evaluation: Evaluation on a task or dataset without task-specific fine-tuning. โ€œPBMC zero-shot AvgBIOโ€

Tweets

Sign up for free to view the 2 tweets with 129 likes about this paper.