Clean Prediction in Latent Space: A Controlled Target Study
![Image 1: [Uncaptioned image]](https://arxiv.org/html/2605.27102v1/jlt_b16_heun50_samples.png)
Diffusion models can be trained to predict the clean data, the added noise, or a velocity field. While these targets are algebraically convertible, recent work (JiT) showed that directly regressing the clean image in pixel space exploits low-dimensional structure better than predicting ambient noise or velocity. This paper asks: does the choice of prediction target still matter when the model operates in a compressed VAE latent space, where much of the pixel variability has already been removed? The authors introduce JLT, a 130M latent diffusion Transformer that uses clean-latent prediction over frozen FLUX.2 VAE codes. By comparing JLT with a matched velocity-prediction DiT under identical representation, architecture, and training settings, the study isolates the effect of the direct regression target. The central finding is that clean-latent prediction consistently outperforms velocity prediction, demonstrating that target parameterization is a geometric modeling choice, not merely an algebraic rewrite.
Prediction Targets and Algebraic Equivalence
The forward corruption process mixes a clean latent and Gaussian noise along a linear path:
Three common direct targets are the clean latent , the noise , and the velocity . For a fixed , any one target determines the others through affine readout. For example, from a predicted clean , one can recover and . This algebraic equivalence often leads practitioners to treat target choice as a notation change. However, the network is trained before this readout is applied, and the readout scales prediction errors differently across noise levels. The paper’s controlled comparison changes only the direct target—clean latent for JLT, velocity for the matched DiT—while keeping the representation, backbone, and training fixed, revealing that the induced regression problem differs substantially.
Target-Geometry Analysis: Why the Target Matters
A local linear-Gaussian analysis explains the empirical gap. Assume and . The marginal target covariances are:
Velocity prediction adds an isotropic unit floor to every direction. If is anisotropic, low-variance latent directions become unit-variance in , while clean prediction keeps their target variance small. The conditional ambiguity also differs. For a single coordinate with eigenvalue ,
The Bayes estimators reveal a further mechanism: as , the clean-target coefficient tends to 0, attenuating low-variance directions, while the velocity-target coefficient tends to , amplifying them. Thus, even though the targets are linearly convertible after prediction, they present different supervised regression problems to the network.
Architecture and Training Setup
JLT is a Base-scale latent Transformer with 12 blocks, hidden dimension 768, 12 attention heads, and a 128-dimensional bottleneck patch embedding, totaling 130M parameters. It follows the JiT-B/16 configuration closely but replaces raw image patches with fixed FLUX.2 VAE latent tokens. Two patch-size variants are evaluated: JLT-B/1 and JLT-B/2, corresponding to VAE-grid patches of size 1 and 2. The matched velocity baseline, DiT-B/1 and DiT-B/2, uses the same architecture and representation but predicts . All models are trained for 250K steps (200 epochs) with AdamW, a base learning rate of (scaled to ), and an effective batch size of 1024. To isolate the target effect, the implementation omits repeated in-context class-token concatenation and the auxiliary classification loss used in JiT. Class conditioning is otherwise standard.
Matched Target Ablation: Clean vs.
Velocity
The core experiment fixes the representation, Transformer scale, and training settings, varying only the direct prediction target. Results on ImageNet are shown in Table 1 and Figure 2.
| Model | Target | Patch | FID-50K |
|---|---|---|---|
| DiT-B/1 | velocity | /1 | 6.56 |
| JLT-B/1 | clean | /1 | 2.56 |
| DiT-B/2 | velocity | /2 | 28.71 |
| JLT-B/2 | clean | /2 | 14.81 |
| JLT-B/1 (guided) | clean | /1 | 2.50 |
Table 1: Matched latent target ablation on ImageNet . Clean-latent prediction dominates velocity prediction at both patch sizes.

Figure 2: Training curves for the matched target ablation. Clean-latent variants maintain lower FID and higher Inception Score throughout training.
Clean-latent prediction improves FID from 6.56 to 2.56 at patch /1, and from 28.71 to 14.81 at patch /2. The training curves show that the clean-latent model enters the low-FID regime earlier and sustains a clear margin. With classifier-free guidance, JLT-B/1 reaches an FID of 2.50. The advantage is not tied to a specific patch size, confirming that the target geometry itself drives the improvement.
Comparison with Representative Baselines
Table 2 places the guided JLT-B/1 result alongside established ImageNet models. JLT is a 130M latent model trained for only 250K steps, yet it achieves competitive FID.
| Model | FID-50K | IS | Train |
|---|---|---|---|
| ADM (guided) | 3.94 | 215.3 | 1000K |
| LDM-4 | 3.60 | 247.7 | 178K |
| DiT-XL/2 | 2.27 | 278.2 | 7M |
| SiT-XL/2 | 2.06 | 270.3 | 7M |
| JiT-B/16 | 2.09 | 282.3 | 800K |
| JiT-B/32 | 2.28 | 278.4 | 800K |
| JLT-B/1 (ours) | 2.50 | — | 250K |
Table 2: Guided ImageNet comparison. JLT-B/1 is a smaller-scale model trained for fewer steps, yet its FID is close to much larger systems.
While XL-scale or representation-aligned models achieve lower FID, they alter multiple factors simultaneously. The comparison contextualizes the magnitude of the clean-prediction benefit without claiming a new state-of-the-art. The key takeaway is that a simple target change inside a fixed latent space yields substantial gains, even at modest scale.
Conclusion and Implications
This study demonstrates that clean-latent prediction consistently outperforms velocity prediction when the representation, architecture, and training are held constant. The local Gaussian analysis provides a mechanism: velocity prediction adds an isotropic covariance floor and amplifies low-variance latent directions, while clean prediction attenuates them. These findings reframe target parameterization in latent diffusion as a geometric modeling choice, not an algebraic detail. The result is not explained by latent compression alone—the gap appears inside the same latent space. Limitations include the focus on ImageNet and a 130M configuration; future work should validate the mechanism across tokenizers and datasets. The paper encourages practitioners to treat the direct prediction target as a first-class design dimension, even in compressed latent spaces.



