Skip to content

The Obsessed Encoder — Latent-Space Misallocation in JEPA-Style Self-Supervised Models

Enigma’s second research drop diagnoses a latent-space misallocation failure mode in JEPA-style self-supervised systems (DINOv3, LeJEPA, LeWorldModel) that is not caught by their built-in anti-collapse regularizers. A synthetic feature carrying as few as 12 bits can dominate a 1024-dim embedding while SIGReg, KoLeo, and Sinkhorn-Knopp centering all report healthy statistics — the encoder folds the low-dimensional predictable feature into a Gaussian-looking hash across the full latent, crowding out the actual signal. The team argues this is a bias of the JEPA objective itself (predictable > informative) rather than an accident of training, reproduces it in all three SOTA systems under a matched-control template, and releases the reproduction code. Load-bearing corollary: on a mild PushT variant (RandGoal — goal pose randomized across episodes) LeWorldModel’s SIGReg LeWorldModel: Stable End-to-End Joint-Embedding Predictive Architecture from Pixels fails outright, and existing filter-based defenses cannot recover because the “distractor” is the actual goal.

  • A single feature carrying only 12 bits of image-dependent entropy can dominate a 1024-dim DINOv3 latent space while the run’s loss, KoLeo, and downstream linear probe all look healthy at first glance [§Introduction, §Results — DINOv3].
  • The failure reproduces under a matched control: a test group where the injected pattern is predictable (episode-constant / image-dependent seed) collapses; a control group with the identical pattern re-sampled per view stays close to the clean baseline. The corruption itself is not the problem; predictability is [§Results template, §Results — DINOv3, LeJEPA, LeWM].
  • SIGReg (Cramér-Wold projection + Epps-Pulley test against N(0,1)\mathcal{N}(0,1), the anti-collapse mechanism of LeJEPA and LeWorldModel) is defeated by low-entropy predictable features: on a collapsed LeWorldModel checkpoint, the entire embedding lies on a ~3-D manifold inside 192-D and SIGReg’s random projections still look Gaussian — the encoder acts as a hash that folds the low-D sheet until every 1-D projection matches N(0,1)\mathcal{N}(0,1) [§The anatomy of a collapse].
  • The failure is not JEPA-specific in the collapse-to-trivial sense — it happens under healthy-looking anti-collapse regularizers. DINOv3 (self-distillation + Sinkhorn-Knopp + KoLeo) also collapses under a 12-bit predictable pattern despite its statistical safeguards [§Results — DINOv3].
  • On PushT-RandGoal (goal pose randomized across episodes, three degrees of freedom encoded in an on-screen goal-T outline), LeWorldModel’s prediction loss drives below the healthy baseline while planning success stays at chance — evidence that the objective actively prefers the collapsed solution to the honest one [§Results — LeWM].
  • Filter-based defenses from the feature-suppression literature (background suppression, watermark erasure via a learned lens, bisimulation filtering, within-trajectory contrastive negatives) cannot recover RandGoal because the “distractor” is the goal itself: the same encoder is used to read the current frame and the goal frame, so filtering the goal out of one erases it from the other [§Results — LeWM, §Background].
  • Framing claim: latent capacity is zero-sum, and JEPA’s inductive bias toward predictable features causes a disproportionate allocation (a 12-bit feature consuming a 1024-D latent that could have accommodated it in a tiny fraction of the space), not merely a mild preference — this qualitative shape holds under modest gaps in predictability between otherwise-comparable features, tipping allocation from sharing into winner-take-all [§Allocation, not selection].
  • Existing theory-side mitigations (wider embeddings, better augmentations) work only when augmentations can disrupt the easy feature; when the planted feature survives the recipe’s augmentations by construction — which the paper documents for all three systems — the wider-embedding fix does not apply (Xue et al. 2023 Theorem 5.4, cited in Footnote 1).
  • A qualitative signature of the collapse is visible in a low-dimensional projection: LeWM latents from a collapsed run form a 2D-PCA sheet with the T-block trajectory folded densely inside it — a low-dimensional manifold rendered Gaussian by hashing, not by information content [§The anatomy of a collapse, embedded visualization].

The paper adapts the video-setting experimental scheme of Sobal et al. (2022) to image datasets and applies it uniformly across DINOv3, LeJEPA, and LeWM. Three runs are compared: (a) a clean baseline, (b) a test group whose injected pattern is nearly constant across augmented views of the same image (or across frames of an episode), and (c) a control group whose pattern is pixel-matched in intensity but freshly sampled per view. The planted pattern is applied to source images before the recipe’s own augmentations, so it survives crops/masks/color-jitter by construction — placing all three systems in the regime where Xue et al. 2023’s Theorem 5.4 says wider embeddings will not help.

Diagnostics stack three axes: (1) loss curves (whether the test group’s training loss crosses below the clean baseline — a “loss crossover” that indicates the objective actively prefers the collapsed solution); (2) downstream probes (ImageNet linear probe for DINOv3, NYU-Depth linear probe for dense features, PushT planning success for LeWM); (3) a pair-similarity analysis measuring whether embeddings cluster by content (healthy) or by injected pattern (collapsed). Recipes are trained from scratch on published minimal reference implementations, with the one code-level change (image-preprocess pattern injection) clearly marked. LeWM’s PushT-RandGoal setup fixes the T-block’s start pose and randomizes the goal pose across episodes, with a scripted expert providing successful demonstrations — a mild variant of the classic PushT benchmark that (per Diffusion Policy on PushT-M at 68%) supervised methods solve, isolating the failure to the self-supervised recipe rather than to task difficulty.

The reproduction repository (Enigma-Incorporated/The-Obsessed-Encoder) ships the watermark code, clearly-marked diffs against each published training recipe (their code, Enigma’s pixels), and configurations for every figure — each collapse reproduces in a few hours on a single H100.

DINOv3 (ImageNet-1k, ViT-L/16 “Fast setup”, 50K of 500K iterations): under a 12-bit image-dependent luminance pattern, the test run’s ImageNet linear-probe curve fails to track the clean baseline while the control stays within a few points of clean. Pair-similarity analysis shows test-run embeddings cluster by planted pattern; control-run embeddings cluster by content. Note: KoLeo is computed per-GPU on the reference 8-GPU / 2048-batch config; the single-GPU replication gives KoLeo more samples per computation, ruling out under-regularization as the cause.

LeJEPA (ImageNet-1k, half-opacity watermark, from-scratch training on the authors’ minimal recipe): matches the template exactly — test group’s loss drops below baseline while probe performance never rises above the control.

LeWorldModel (PushT, two setups): (i) a 5×5-pixel colored square in the top-left corner (< 0.05% of image), episode-constant color in test / re-randomized per-frame in control — reproduces the template failure. (ii) RandGoal: no matched control (the colored-square arms play that role), yet LeWM’s prediction loss dives below the healthy baseline while planning success stays at chance across the run. Notably, the paper’s own authors (Maes et al. 2026 — LeWorldModel: Stable End-to-End Joint-Embedding Predictive Architecture from Pixels and follow-up stable-worldmodel: A Platform for Reproducible World Modeling Research and Evaluation) reported LeWM failing under mild PushT variations without giving an explanation; RandGoal is the sharpest instantiation of that reported failure.

Anatomy of the collapse on a LeWM checkpoint (192-D embedding): the collapsed run’s SIGReg term ends no higher than the healthy baseline’s — random projections look normal, exactly as they would for a real N(0,1)\mathcal{N}(0,1) distribution. Ground-truth structure (three-DoF goal pose) implies the embedding lies on at most a 3-D surface inside the 192-D space. A 2D PCA of the trajectory shows the low-dimensional sheet folded across the principal axes — the encoder is acting as a hash function that spreads three numbers across 192 dimensions such that every 1-D projection is Gaussian, defeating SIGReg by construction.

This is the sharpest filed critique so far of the LeCun/Balestriero JEPA line at end-to-end pixel scale. The wiki has been tracking LeWorldModel (LeWorldModel: Stable End-to-End Joint-Embedding Predictive Architecture from Pixels) as the leading candidate for “no explicit 3D, no pretrained encoder, single hyperparameter” WFM — this post shows SIGReg specifically fails against exactly the low-entropy episode-constant features that dominate real robotics observations (fixed cameras, fixed backgrounds, static goal specifications), and does so silently because SIGReg’s random-projection Gaussianity test is defeated by the encoder learning a hash. It complements Haiyu Wu — critique of reachability-augmented CEM planning in JEPA world models (with VISReg counter-example)‘s independent VISReg counter-example — Wu argues LeWM’s train-test mismatch is a regularizer artifact and swapping SIGReg for VISReg recovers planning; Enigma argues the failure is deeper, showing that the same qualitative collapse hits DINOv3 (Sinkhorn-Knopp + KoLeo) and LeJEPA (SIGReg) too. Both critiques point at the same load-bearing question the wiki flagged as open for this cluster: whether latent-predictive WFMs generalize under the low-entropy episode-constant features that dominate real robot observations. Zoom out: this post also lands directly on Mechanistic Interpretability‘s “concept-as-subspace” thread (Structuring Sparsity: Block-Sparse Featurizers Capture Visual Concept Manifolds) — a 3-D task manifold being hashed into a 192-D Gaussian is exactly the pathology a block-sparse decomposition should catch, and would give a quantitative measure of the qualitative “hash function” story. It also is a rare live counterexample to the Platonic-representation-hypothesis optimism in Emergent Representation Geometry: cross-system convergence isn’t automatically good when what’s converging is a shared failure mode driven by a shared inductive bias.