Paper deep dive
Improving Few-Step Language Flows with Untied Self-Conditioning
Bocheng Li, Linli Xu
Intelligence
Status: not_run | Model: - | Prompt: - | Confidence: 0%
Entities (0)
Relation Signals (0)
No relation signals yet.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Flow-matching language models refine all token positions in parallel and can trade sampling steps for latency, yet generation quality still degrades sharply with few sampling steps. We trace a source of this degradation to a train--inference mismatch in previous-prediction self-conditioning: during training, the self-conditioning input is computed from the current noisy state with no intervening solver step; during sampling, the solver folds the previous prediction into the latent before that same prediction reappears as the explicit self-conditioning input. This coupling, absent during training, creates redundancy that grows with step width. We show that the mismatch degrades both the self-conditioning input and the solver update, and derive a correction for each from the model's own structure. From the frozen projection weights we identify directions along which the self-conditioning input is redundant with the latent and dampen them; from the solver's integration structure we derive that a step-average prediction is needed and approximate it from prediction history, with scale set by offline trajectory statistics. The resulting sampler, Untied Self-Conditioning, requires no retraining and uses one evaluation per step. At 8 sampling steps on LangFlow, it reduces OpenWebText generative perplexity from $531$ to~$62$ ($8.6\times$); under an adapted Arena-Hard-Auto~v2 protocol, its outputs are preferred in $96\%$ of pairwise comparisons. On ELF-B it reduces generative perplexity from $71$ to~$43$. Improvements hold from 8 to 256 sampling steps.
Tags
Links
- Source: https://arxiv.org/abs/2608.22244v1
- Canonical: https://arxiv.org/abs/2608.22244v1
Trouble viewing inline? Open PDF directly →
Full Text
98,292 characters extracted from source content.
Expand or collapse full text
Improving Few-Step Language Flows with Untied Self-Conditioning Bocheng Li Affiliation: University of Science and Technology of China Affiliation: State Key Laboratory of Cognitive Intelligencebcli@mail.ustc.edu.cnlinlixu@ustc.edu.cn Linli Xu Thanks: Corresponding author. Affiliation: University of Science and Technology of China Affiliation: State Key Laboratory of Cognitive Intelligencebcli@mail.ustc.edu.cnlinlixu@ustc.edu.cn Abstract Flow-matching language models refine all token positions in parallel and can trade sampling steps for latency, yet generation quality still degrades sharply with few sampling steps. We trace a source of this degradation to a train–inference mismatch in previous-prediction self-conditioning: during training, the self-conditioning input is computed from the current noisy state with no intervening solver step; during sampling, the solver folds the previous prediction into the latent before that same prediction reappears as the explicit self-conditioning input. This coupling, absent during training, creates redundancy that grows with step width. We show that the mismatch degrades both the self-conditioning input and the solver update, and derive a correction for each from the model’s own structure. From the frozen projection weights we identify directions along which the self-conditioning input is redundant with the latent and dampen them; from the solver’s integration structure we derive that a step-average prediction is needed and approximate it from prediction history, with scale set by offline trajectory statistics. The resulting sampler, Untied Self-Conditioning, requires no retraining and uses one evaluation per step. At 8 sampling steps on LangFlow, it reduces OpenWebText generative perplexity from 531531 to 6262 (8.6×8.6×); under an adapted Arena-Hard-Auto v2 protocol, its outputs are preferred in 96%96\% of pairwise comparisons. On ELF-B it reduces generative perplexity from 7171 to 4343. Improvements hold from 8 to 256 sampling steps. 1 Introduction Flow matching (15) has enabled high-quality parallel generation in continuous domains, with recent progress extending to text (14; 5; 23; 6; 9; 3; 8). These models embed discrete tokens in a continuous latent space and refine all positions simultaneously, approaching autoregressive quality while admitting variable-cost sampling: fewer iterative steps directly reduce latency (3; 8). Making each model evaluation as informative as possible is the central challenge for few-step generation. A standard technique in these models is previous-prediction self-conditioning (2): at each step, the model receives its own clean prediction from the preceding step as additional input (23; 10; 6; 28; 16; 8). Self-conditioning consistently improves generation quality, yet it introduces a train–inference mismatch: during sampling, the solver folds the previous prediction into the latent before that same prediction reappears as the explicit self-conditioning input, creating a coupling between the two input pathways that is absent during training and grows with step width. Prior work has studied train–inference discrepancies in the self-conditioning recurrence (22; 17; 4) and proposed inference-time modifications to individual components of the sampling loop (30; 18; 20), but has not diagnosed the specific mechanism by which this coupling degrades the self-conditioning input or the solver’s own update. Figure 1: Train–inference mismatch and its correction. (a) Standard self-conditioning: the solver folds pk−1p_k-1 into the latent zkz_k, so zkz_k already encodes pk−1p_k-1. Then mk=pk−1m_k=p_k-1 re-introduces the same information as an explicit input. During training, no solver step intervenes, so this redundancy does not arise. (b) Untied Self-Conditioning corrects both consequences: an overlap transform FkF_k dampens self-conditioning components the latent already represents, while a solver correction AkA_k shifts the prediction toward the step average. The raw prediction is stored for the next self-conditioning input. In this work, we show that the solver-introduced coupling degrades few-step generation through two specific mechanisms, and derive a correction for each from the model’s own structure. First, the solver folds the previous prediction into the latent, so the explicit self-conditioning input re-introduces information the latent already carries; we show from the model’s frozen projection weights that this redundancy concentrates in directions shared by both input pathways. A controlled experiment confirms the causal role of coupling: varying only the dependence between successive steps while keeping each step’s marginal distribution fixed, the benefit of the self-conditioning input shrinks monotonically, and at strong coupling full self-conditioning becomes harmful (Section 5.3). Second, the single-point prediction at the start of each step departs from the average prediction needed for the exact solver update; we show that this gap is first order in step width and can be approximated from prediction history. Both effects compound in the few-step regime, explaining the sharp quality loss. We introduce Untied Self-Conditioning, a training-free sampler that corrects both mechanisms with one model evaluation per step. For the self-conditioning input, an eigendecomposition of the frozen projection weights identifies the directions along which the input is redundant with the latent; a transform dampens those directions so the explicit input carries complementary information. For the solver, prediction history approximates the step-average prediction, with scale set by offline trajectory statistics. The corrected prediction enters only the solver; the raw prediction is stored for self-conditioning. Across ELF and LangFlow, Untied Self-Conditioning improves generation quality in every tested configuration. At eight model evaluations it reduces LangFlow GenPPL on OpenWebText from 531531 to 6262 (8.6×8.6×) and on ELF-B from 7171 to 4343. At 32 evaluations on ELF-B it achieves a GenPPL of 2121, approaching the data reference, with no retraining and 95%95\% throughput retained. Our contributions are: • We show that self-conditioning can become harmful at strong coupling, even when each step’s prediction quality is unchanged. The cause is a train–inference mismatch: the solver couples the latent and self-conditioning pathways in a way that is absent during training. A controlled experiment confirms the causal role by varying only the coupling while preserving marginals. • We derive the geometric structure of the resulting redundancy from the model’s frozen projection weights, and the solver’s approximation gap from its integration structure; each derivation yields a specific correction objective. • Untied Self-Conditioning implements both corrections in a sampler that requires no retraining and uses one model evaluation per step. It improves generation quality at every tested NFE, with the largest gains in the few-step regime. Section 2 reviews the sampling recurrence. Section 3 diagnoses the mismatch and derives a correction objective for each consequence. Section 4 assembles the complete sampler. Section 5 presents controlled experiments and generation results. 2 Preliminaries A language flow embeds discrete tokens into a continuous space and learns a velocity field vθ(z,t)v_θ(z,t) that transports noise to clean data. Sampling integrates the induced ODE from a noise sample z0z_0; in practice, a numerical solver discretizes the integral over a time grid 0=t0<⋯<tK=10=t_0<·s<t_K=1. At each step k, the model produces a clean prediction pkp_k from which the solver computes the latent update. We report the total number of frozen-model evaluations as NFE. Previous-prediction self-conditioning (2) supplies the model with its own clean prediction from the preceding step as an additional input. The sampling recurrence is pk=fθ(zk,mk,tk),zk+1=Sk(zk,pk),mk+1=pk,p_k=f_θ(z_k,m_k,t_k), z_k+1=S_k(z_k,p_k), m_k+1=p_k, (1) where mkm_k is the self-conditioning input: the previous clean prediction carried forward from step k−1k-1. During training, the model receives m=sg[fθ(z,0,t)]m=sg[f_θ(z,0,t)] computed from the current noisy state for a random half of examples, and zero otherwise (2; 23; 10; 6; 28; 16; 8). During sampling, mk=pk−1m_k=p_k-1 while zkz_k has already been advanced with pk−1p_k-1. The intervening solver step is the source of cross-step correlation analyzed in Section 3.1. 3 Solver Coupling Creates a Train–Inference Mismatch During training, the model receives the current noisy state z and a self-conditioning input m computed from that same state through a detached forward pass. No solver step intervenes between z and m, so no earlier prediction has been folded into z by the solver. During sampling, the situation is different. The solver updates zk+1z_k+1 as a weighted combination of zkz_k and pkp_k, folding the prediction directly into the latent. Then the next evaluation sees mk+1=pkm_k+1=p_k as an explicit input alongside that updated latent. The model therefore receives pkp_k twice: once absorbed into zk+1z_k+1 through the solver, once passed directly as mk+1m_k+1. This coupling between the two input pathways is absent during training and grows with step width. The mismatch has two consequences. First, the self-conditioning input partly repeats what the latent already encodes; the redundancy concentrates in directions that both input projections share and can be quantified from the model’s frozen weights. Second, the solver evaluates the model once at the start of each step, but accurate integration requires the average prediction over the step; the gap grows at low step counts. Section 3.1 establishes the causal role of the coupling. Sections 3.2 and 3.3 derive a correction objective for each consequence. 3.1 Cross-step correlation reduces the value of self-conditioning To confirm that the coupling itself, not the quality of individual predictions, drives the degradation, we first isolate its effect in a scalar Gaussian model. The useful coefficient on the self-conditioning input depends on how much of its information the latent already carries. Let Y∼(0,τ2)Y (0,τ^2) be a clean target observed through two noisy channels: Z=Y+σzϵz,M=Y+σmϵm,Corr(ϵz,ϵm)=ρ,Z=Y+ _z _z, M=Y+ _m _m, ( _z, _m)=ρ, (2) where ϵz,ϵm _z, _m are zero-mean, unit-variance, jointly Gaussian, and independent of Y. The correlation ρ controls how much noise the two channels share, analogous to the solver coupling pk−1p_k-1 into both zkz_k and mkm_k. Varying ρ leaves both marginals P(Y,Z)P(Y,Z) and P(Y,M)P(Y,M) unchanged. Only the joint P(Z,M)P(Z,M) changes. The coefficient on M that minimizes prediction error decreases monotonically with ρ, crossing zero at a critical correlation that depends on the noise levels (Appendix A.1). Beyond this crossing, a fixed positive coefficient on M becomes harmful. So changing only the coupling between inputs can change whether the self-conditioning input helps or hurts prediction. The sampling recurrence has this structure. The prediction pk−1p_k-1 appears explicitly in mkm_k and also affects zkz_k through the solver. Section 5.3 confirms the predicted monotone decrease on a frozen language model. 3.2 The self-conditioning input should reduce its overlap with the latent Given that the coupling creates redundancy between the two input pathways, we now derive its geometric structure from the model’s frozen projection weights. The redundancy concentrates in directions that both input projections share; this structure determines which components of the self-conditioning input to dampen. In self-conditioned flow-matching language models, the latent and self-conditioning input enter the network through a single learned projection that operates on their concatenation. This is equivalent to two linear maps whose outputs are summed. Let PzP_z and PmP_m project onto the row spaces of these effective projection matrices. On the self-conditioning subspace, define K=PmPzPm.K=P_mP_zP_m. (3) The eigenvectors qiq_i of K are the principal directions shared by the two row spaces, and the eigenvalues ρi2∈[0,1] _i^2∈[0,1] are the squared cosines of their principal angles. Concretely, a large ρi2 _i^2 means that both the latent projection and the self-conditioning projection respond strongly to the same input component: any signal the self-conditioning input carries along that direction is already represented in the latent. Along such directions the explicit input is redundant. For any self-conditioning input m, the weighted projection onto these shared directions is ℰ(m)=12‖PzPmm‖2=12⟨m,Km⟩.E(m)= 12\|P_zP_mm\|^2= 12 m,Km . (4) This quantity is our overlap objective: smaller ℰE means less redundancy with the latent pathway. The objective ℰE suggests a natural family of transforms: dampen m along high-overlap directions and leave the rest unchanged. The map (I−aK)(I-aK) with 0<a≤10<a≤ 1 does exactly this.It retains fraction 1−aρi21-a _i^2 along direction qiq_i, so directions shared by both projections (ρi _i large) are dampened most, while directions unique to self-conditioning pass through. Section 4.1 instantiates this family. 3.3 The solver should approximate the step-average prediction The second consequence of the mismatch concerns the solver itself. The solver evaluates the model once at the start of each step [tk,tk+1][t_k,t_k+1], but the true velocity field changes throughout the step. The exact update requires a weighted average p¯k p_k of predictions over the step interval (Appendix A.3); a single evaluation provides only the initial point pkp_k. The gap Ck∗=p¯k−pkC_k^*= p_k-p_k is first order in step width hkh_k, and its contribution to the latent update is second order in hkh_k: negligible with many steps but substantial at low NFE. Appendix C.7 verifies these orders on high-resolution trajectories. Computing p¯k p_k exactly requires multiple evaluations per step. A weaker condition suffices: if a nonzero direction BkB_k is applied with scale η>0η>0, the change in squared correction error is ‖Ck∗−ηBk‖2−‖Ck∗‖2=η2‖Bk‖2−2η⟨Ck∗,Bk⟩.\|C_k^*-η B_k\|^2-\|C_k^*\|^2=η^2\|B_k\|^2-2η C_k^*,B_k . (5) The endpoint error is proportional to this quantity (Appendix A.3), so any direction BkB_k positively correlated with Ck∗C_k^* improves the update for a range of scales η. Computing p¯k p_k from past predictions avoids extra evaluations. An exponential moving average tracks recent output: Ek+1=(1−α)Ek+αpk,E0=0.E_k+1=(1-α)E_k+α p_k, E_0=0. (6) The residual Hk=pk−EkH_k=p_k-E_k estimates recent change in prediction and serves as the primary correction direction. Section 4.2 refines it with a second direction from solver-weighted history, and normalizes the result using offline trajectory statistics. Appendix C.7 evaluates the resulting direction against high-resolution step averages. 4 Untied Self-Conditioning Section 3 diagnosed a train–inference mismatch with two consequences: the self-conditioning input carries redundancy that concentrates in specific directions of the projection geometry (Section 3.2), and the solver’s single-point evaluation departs from the step-average prediction (Section 3.3). We now implement a correction for each within a single sampling loop. A transform derived from the overlap structure dampens the self-conditioning input along redundant directions, and a history-based correction shifts the solver toward its step average. Both share one model evaluation per step; offline trajectory statistics set the correction’s mean and scale. 4.1 Self-conditioning transform The goal is to reduce ℰ(m)E(m) from Section 3.2 at each step. Principal directions Q and squared cosines ρi2 _i^2 are computed once from frozen weights; the transform retains fraction ℓk,i _k,i along direction qiq_i: Fk F_k =I−Q(I−Diag(ℓk,1,…,ℓk,r))Q⊤, =I-Q\! (I-Diag( _k,1,…, _k,r) )Q , (7) m~k m_k =Fkmk. =F_km_k. Directions with larger ρi2 _i^2 receive stronger dampening, following the (I−aK)(I-aK) form that reduces the overlap ℰE at every step (Section 3.2). The base exponent λR(0) _R^(0) is derived from the model’s response geometry (Appendix C.4); ηR≥0 _R≥ 0 scales it, giving effective exponent λR=λR(0)ηR _R= _R^(0) _R. The dampening strength adapts across steps: it is strongest when the solver has folded a large fraction of the prior prediction into the latent, and weakens when the raw and corrected running averages disagree (Section 4.3). At the first step no prior prediction exists, so the input passes unchanged. Appendix B.1 gives the full retention schedule. 4.2 Solver-step correction Solver-weighted history. Each solver step Sk(zk,qk)S_k(z_k,q_k) depends linearly on the prediction qkq_k it receives (before correction qk=pkq_k=p_k; with correction qk=pk+Akq_k=p_k+A_k, see Section 4.3). We track the running weighted average of predictions that entered the solver: Ok+1=(1−κk)Ok+κkqk,O0=0,O_k+1=(1- _k)\,O_k+ _k\,q_k, O_0=0, (8) where κk∈[0,1] _k∈[0,1] is the solver’s update weight (Appendix A.2). Correction direction. We construct a direction that correlates with Ck∗C_k^* from two signals available in the current trajectory. The first is the EMA residual Hk=pk−EkH_k=p_k-E_k from Section 3.3, which captures recent prediction change. The second compares the current prediction with the running average OkO_k: Gk=‖Hk‖pk−Ok‖pk−Ok‖if ‖Hk‖,‖pk−Ok‖>ϵ,0otherwise.G_k= cases\|H_k\|\, p_k-O_k\|p_k-O_k\|&if \|H_k\|,\|p_k-O_k\|>ε,\\[4.0pt] 0&otherwise cases. (9) The combined correction direction is Uk=Hk+ηOΔuk(Hk−Gk),U_k=H_k+ _O\, u_k\,(H_k-G_k), (10) where Δuk∈[0,1] u_k∈[0,1] is a normalized step-width feature (Appendix B.3) and ηO≥0 _O≥ 0 weights the disagreement between the two estimates. The two estimates reflect different prediction streams: EkE_k accumulates the raw prediction pkp_k that enters self-conditioning, while OkO_k accumulates the corrected prediction pk+Akp_k+A_k that enters the solver. Their per-token cosine distance δ¯k δ_k quantifies cross-pathway agreement and also gates the self-conditioning dampening strength (Section 4.3). Normalizing with offline statistics. The direction UkU_k comes from the current trajectory, but its scale is arbitrary. We normalize it to match statistics precomputed from stored trajectories: a per-step token mean μk _k and centered RMS σk _k, estimated on disjoint trajectory banks (Appendix B.4). Let CtokC_ tok center a tensor by subtracting its per-position mean. The normalized correction is Πk(Uk) _k(U_k) =μk+σkCtokUkRMS(CtokUk), = _k+ _k C_ tokU_kRMS(C_ tokU_k), (11) Ak A_k =ηTΠk(Uk). = _T _k(U_k). This replaces the scale and mean of UkU_k while preserving its centered direction (Appendix B.5). Appendix C.7 evaluates the resulting direction against high-resolution step averages. 4.3 State update One evaluation produces pk=fθ(zk,m~k,tk)p_k=f_θ(z_k, m_k,t_k); each correction applies to its own pathway: zk+1=Sk(zk,pk+Ak),mk+1=pk,Ok+1=(1−κk)Ok+κk(pk+Ak),Ek+1=(1−α)Ek+αpk. aligned z_k+1&=S_k(z_k,p_k+A_k),&m_k+1&=p_k,\\ O_k+1&=(1- _k)O_k+ _k(p_k+A_k),&E_k+1&=(1-α)E_k+α p_k. aligned (12) The raw pkp_k updates self-conditioning and the EMA; the corrected pk+Akp_k+A_k advances the solver and its state. During training the model receives raw predictions as self-conditioning input; routing the correction there would create a second mismatch (Section 5.5). The untied routing produces two running averages, EkE_k from the raw pathway and OkO_k from the corrected pathway, whose agreement connects both corrections. The self-conditioning dampening adapts via ak=κk−1(1−δ¯k−1),a_k= _k-1(1- δ_k-1), (13) where δ¯k−1 δ_k-1 is the cosine distance between Hk−1H_k-1 and Gk−1G_k-1. When the estimates agree, dampening is strong; when they disagree, it relaxes (a0=0a_0=0). Algorithm 1 summarizes the loop. Algorithm 1 Untied Self-Conditioning sampling. The corrected prediction updates the solver states (z,O)(z,O); the raw prediction updates the self-conditioning states (m,E)(m,E). Input: frozen model fθf_θ, base solver SkS_k, time grid tkk=0K\t_k\_k=0^K Precomputed: overlap basis Q, cosines ρi2\ _i^2\, base transform exponent λR(0) _R^(0), cosine distance δ¯k δ_k, per-step correction mean μk _k and centered RMS σk _k Hyperparameters: ηR,ηT,ηO _R, _T, _O (nonnegative strength coefficients); α∈(0,1]α∈(0,1] (EMA weight on the current prediction) Initialize: m0,E0,O0←0m_0,E_0,O_0← 0; κ−1←0 _-1← 0, δ¯−1←0 δ_-1← 0 for k=0,…,K−1k=0,…,K-1 do 1. m~k←Fkmk m_k← F_km_k self-conditioning transform 2. pk←fθ(zk,m~k,tk)p_k← f_θ(z_k, m_k,t_k) one model evaluation 3. Hk←pk−EkH_k← p_k-E_k; Gk←|Hk|(pk−Ok)/‖pk−Ok‖G_k←\|H_k\|(p_k-O_k)/\|p_k-O_k\|; construct UkU_k by equation 10 4. Compute AkA_k by equation 11 solver correction 5. zk+1←Sk(zk,pk+Ak)z_k+1← S_k(z_k,p_k+A_k); Ok+1←(1−κk)Ok+κk(pk+Ak)O_k+1←(1- _k)O_k+ _k(p_k+A_k) corrected → solver 6. mk+1←pkm_k+1← p_k; Ek+1←(1−α)Ek+αpkE_k+1←(1-α)E_k+α p_k raw → self-conditioning end for; return zKz_K The loop uses exactly NFE evaluations: one per solver step for ELF; NFE−1-1 before the solver updates plus one final evaluation for LangFlow (Appendix A.2). 5 Experiments We first show that Untied Self-Conditioning improves generation quality at every tested NFE, then verify the diagnosed mismatch and each derived correction through controlled experiments that isolate cross-step coupling, overlap-aligned directions, and correction placement. 5.1 Experimental setup Data and generation. ELF-B, ELF-M, and ELF-L are evaluated on OpenWebText with NFE ranging from 8 to 64. LangFlow is evaluated on OpenWebText and LM1B with NFE from 8 to 256. OpenWebText generations contain 1,024 tokens; LangFlow LM1B generations contain 128. Evaluation. We report generative perplexity (GenPPL) under GPT-2 Large and unigram entropy H. GenPPL measures the quality of generated text; H measures diversity. Section 5.2 additionally reports pairwise LLM-judge preference and per-sample external-evaluator likelihood as complementary quality signals. All main results average six seeds, each with 1,024 generations; controlled studies use smaller sample counts noted in each subsection. Appendix C.1 gives the full metrics, uncertainty units, and protocol. Matched conditions. Every comparison keeps the pretrained model, base solver, time grid, tokenizer, and decoding procedure fixed. Matched configurations share the initial latent, time grid, and random stream. The overlap basis and offline trajectory statistics are computed once from frozen model weights and shared across all configurations. 5.2 Generation quality improves at every tested NFE Untied Self-Conditioning improves generation quality relative to the official sampler in every tested configuration (Tables 3, 4). At 8 NFE, Untied Self-Conditioning reduces LangFlow GenPPL on OpenWebText from 531.2531.2 to 61.661.6 (8.6×8.6×) and on LM1B from 264.0264.0 to 73.073.0 (3.6×3.6×). On ELF-B at 8 NFE it reaches 42.6642.66 versus the official sampler’s 70.6370.63. At 32 NFE on ELF-B it reaches 21.021.0 without additional training. Figure 3(a) places the results in system-level context. Figure 2 annotates unigram entropy at every matched point: on LangFlow, Untied Self-Conditioning moves entropy closer to the corpus reference; on ELF, entropy is preserved. At 8 and 16 NFE on LangFlow, every one of 6,144 paired samples has lower GenPPL (Appendix C.12). On ELF-B at 8 NFE, varying each coefficient independently over a [×12,×2][×\! 12,\,×\!2] range always improves GenPPL (Appendix C.11). Across six workloads the sampler retains 95.5%95.5\% geometric-mean throughput (Appendix C.10). Figure 2: GenPPL versus NFE; every curve point annotates entropy. Panels (a)–(e) compare the official sampler (dashed) with Untied Self-Conditioning (solid) for each model–dataset pair. Dotted lines mark data references taken from 8 (OWT) and 27 (LM1B). Pairwise LLM-judge evaluation. Figure 3(b) provides a direct quality comparison independent of perplexity using an adapted Arena-Hard-Auto v2 protocol (13). Each NFE pairs 1,024 generations from the official sampler and Untied Self-Conditioning on the same latent; each pair is judged blind in both presentation orders by DeepSeek V4 Pro, yielding 8,192 judgments in total. Untied Self-Conditioning wins 96.3%96.3\% of non-tie comparisons at 8 NFE (Arena score 79.279.2, 95% CI [77.7,80.8][77.7,80.8]) and retains a clear advantage at 64 NFE (77.4%77.4\%, Arena score 59.759.7, CI [58.1,61.2][58.1,61.2]). Appendix C.2 gives the full protocol. Figure 3: System context and pairwise LLM-judge preference. (a) System-level OpenWebText context; external curves taken from 8. (b) Pair outcomes on LangFlow OpenWebText from 1,024 comparisons per NFE. Each bar partitions Ours wins, ties, and Official wins; labels at the right endpoint give the Arena score. Appendix C.9 additionally compares Untied Self-Conditioning with training-free sampling methods under matched conditions; Untied Self-Conditioning outperforms all tested alternatives. The following controlled experiments verify the diagnosed mismatch and each derived correction independently. The step-average scaling experiment (Appendix C.7) additionally verifies that the correction Ck∗C_k^* is first order in step width and its latent contribution is second order, matching Section 3.3. 5.3 Does correlation across sampling steps change a fixed self-conditioning update? Figure 4: Correlation across sampling steps changes the value of a fixed self-conditioning update. (a) The experiment varies only the dependence ρ between the carried prediction mk=pk−1m_k=p_k-1 and the next latent zkz_k, while preserving both marginals. The MSE-optimal interpolation coefficient along one frozen self-conditioning-induced prediction direction decreases with ρ (b); consequently, a fixed coefficient of one crosses from helpful to harmful (c). This experiment directly tests the causal mechanism diagnosed in Section 3.1: does the coupling itself, not the quality of individual predictions, change the value of self-conditioning? The experiment in Figure 4 preserves the marginal distribution at every NFE and changes only the correlation between successive steps. Five correlations from 00 to 11 are tested at 8 and 16 NFE. The MSE-optimal coefficient decreases monotonically from 0.880.88 to 0.300.30 at 8 NFE and from 0.780.78 to 0.350.35 at 16 NFE. At high correlation, full self-conditioning becomes harmful: the MSE ratio (coefficient one vs. zero) rises from 0.920.92 to 1.071.07 and from 0.920.92 to 1.111.11, respectively. The useful coefficient therefore depends on the joint distribution along the sampling trajectory, confirming that the solver-introduced correlation drives the effect. Appendix C.5 reports the full protocol and controls. 5.4 Which self-conditioning directions should be retained? Dampening high-overlap directions outperforms matched alternatives. Table 8 (Appendix C.6) holds eigenvalues fixed and varies only their assignment to input directions, with the solver correction disabled. The overlap-aligned, reverse, and random transforms share the same eigenvalues and mean strength; they differ only in which directions receive those eigenvalues. The overlap-aligned assignment from Section 3.2 most strongly reduces ℰ(m)E(m) and outperforms official self-conditioning by 0.150.15 GPT-2 NLL as well as both matched controls. 5.5 Where should the solver correction be applied? Table 1: Two 2×22× 2 tests on ELF-B at 8 NFE with 1,024 matched generations from seed 0 (GenPPL / unigram entropy): (a) state assignment; (b) method components. (a) State assignment Solver: pkp_k Solver: pk+Akp_k+A_k Next SC: pkp_k 67.27 / 5.23 45.63 / 5.14 Next SC: pk+Akp_k+A_k 157.77 / 5.35 334.19 / 5.33 (b) Components SC transform Correction off Correction on Off 74.18 / 5.27 50.04 / 5.16 On 67.27 / 5.23 45.63 / 5.14 The solver is the correct destination for the history-based correction. Table 1 applies the same correction either in the solver update, in the next self-conditioning input, or in both places, while fixing the self-conditioning transform. Applying it in the solver reaches 45.6345.63 GenPPL compared with 67.2767.27 without the correction under the same self-conditioning transform. Adding the correction only to the self-conditioning input raises GenPPL to 157.77157.77, worse than no correction at all. This ordering holds in five additional settings. Panel (b) isolates the two components: the solver correction provides the larger individual gain, and the complete sampler outperforms either component alone. Appendix C.9 reports the additional settings and direction controls. 6 Related Work Self-conditioned language flows. Continuous diffusion and flow models for text embed discrete tokens into a continuous space and refine all positions in parallel (14; 23; 6; 7; 10; 24; 5; 28; 16; 26; 9; 3; 8). Previous-prediction self-conditioning (2) supplies the model with its own clean prediction from the preceding step; variants appear across embedding, simplex, and contextual formulations (23; 10; 6; 28; 16; 8). We study models in which a frozen network receives the current latent and a previous clean prediction through separate linear input projections. ELF and LangFlow are two instances of this interface. Training-time modifications to self-conditioning. Several studies diagnose train–inference mismatch in the self-conditioning recurrence and address it through modified training (22; 17; 4). Other methods expose the model to its own intermediate states during training (21), specialize through post-training (1), or distill recurrent self-conditioning iterations (27). All require modifying model weights. Our method keeps the model frozen and constructs a transform from the geometry of the input projections. Inference-time changes to self-conditioning. Analog Bits studies an exponential moving average of previous predictions and a self-guidance rule that uses two model evaluations (2). ACE estimates a repetition-associated direction from generated trajectories and subtracts it from the self-conditioning input (30). These methods modify the self-conditioning input independently of the solver update. Solvers and multi-step methods. Advanced solvers reuse past model evaluations to improve numerical integration of the probability-flow ODE (29; 18; 31). Separately, several methods aggregate past clean predictions to stabilize or refine the current prediction supplied to the solver (25; 19; 11; 20; 12). In self-conditioned models, the same prediction enters both the solver and the next network evaluation. These methods improve the numerical update but do not account for the self-conditioning pathway. Offline model statistics for solver design. DPM-Solver-v3 precomputes evaluator-free empirical model statistics to instantiate a model-dependent solver parameterization (32). Offline trajectory statistics have proved useful for training-free solver design more broadly. These methods target numerical integration without modifying the self-conditioning pathway. In summary, prior methods modify individual components of the sampling loop in isolation. This work identifies that the solver introduces coupling between the two pathways that is absent during training, and derives both corrections from the model’s projection geometry and integration structure. 7 Conclusion We diagnosed a train–inference mismatch in self-conditioned flow sampling: the solver introduces coupling between the latent and self-conditioning pathways that is absent during training. A controlled experiment confirmed the causal role of this coupling: when it is strong, a fixed self-conditioning coefficient crosses from helpful to harmful. From the model’s frozen projection weights we derived the geometric structure of the resulting redundancy, and from the solver’s integration structure we derived the step-average approximation gap. Untied Self-Conditioning corrects both in a training-free sampler with one model evaluation per step. Across ELF and LangFlow, it improves generation quality at every tested NFE; with eight evaluations, it reduces LangFlow GenPPL on OpenWebText from 531531 to 6262, with gains confirmed by pairwise LLM-judge preference and per-sample external-evaluator likelihood. References Cardei et al. (2026) M. Cardei, H. B. Ta, and F. Fioretto Simple self-conditioning adaptation for masked diffusion models. External Links: 2604.26985, Link Cited by: §6. Chen et al. (2023) T. Chen, R. Zhang, and G. Hinton Analog bits: generating discrete data using diffusion models with self-conditioning. In The Eleventh International Conference on Learning Representations, External Links: Link Cited by: §1, §2, §2, §6, §6. Chen et al. (2026) Y. Chen, C. Liang, H. Sui, R. Guo, C. Cheng, J. You, and G. Liu LangFlow: continuous diffusion rivals discrete in language modeling. External Links: 2604.11748, Link Cited by: §1, §6. Cong et al. (2026) D. N. Cong, T. Kieu, and H. Thanh-Tung FastDiSS: few-step match many-step diffusion language model on sequence-to-sequence generation. In Findings of the Association for Computational Linguistics: ACL 2026, M. Liakata, V. P. Moreira, J. Zhang, and D. Jurgens (Eds.), San Diego, California, United States, p. 17572–17592. External Links: Link, Document, ISBN 979-8-89176-395-1 Cited by: §1, §6. Gong et al. (2023) S. Gong, M. Li, J. Feng, Z. Wu, and L. Kong DiffuSeq: sequence to sequence text generation with diffusion models. In The Eleventh International Conference on Learning Representations, External Links: Link Cited by: §1, §6. Gulrajani and Hashimoto (2023) I. Gulrajani and T. B. Hashimoto Likelihood-based diffusion language models. In Advances in Neural Information Processing Systems, A. Oh, T. Naumann, A. Globerson, K. Saenko, M. Hardt, and S. Levine (Eds.), Vol. 36, p. 16693–16715. External Links: Document, Link Cited by: §1, §1, §2, §6. Han et al. (2023) X. Han, S. Kumar, and Y. Tsvetkov SSD-LM: semi-autoregressive simplex-based diffusion language model for text generation and modular control. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), A. Rogers, J. Boyd-Graber, and N. Okazaki (Eds.), Toronto, Canada, p. 11575–11596. External Links: Link, Document Cited by: §6. Hu et al. (2026) K. Hu, L. Qiu, Y. Lu, H. Zhao, T. Li, Y. Kim, J. Andreas, and K. He ELF: embedded language flows. External Links: 2605.10938, Link Cited by: §1, §1, §2, Figure 2, Figure 3, §6. Hu et al. (2024) V. Hu, D. Wu, Y. Asano, P. Mettes, B. Fernando, B. Ommer, and C. Snoek Flow matching for conditional text generation in a few sampling steps. In Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics (Volume 2: Short Papers), Y. Graham and M. Purver (Eds.), St. Julian’s, Malta, p. 380–392. External Links: Link, Document Cited by: §1, §6. Karimi Mahabadi et al. (2024) R. Karimi Mahabadi, H. Ivison, J. Tae, J. Henderson, I. Beltagy, M. Peters, and A. Cohan TESS: text-to-text self-conditioned simplex diffusion. In Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics (Volume 1: Long Papers), Y. Graham and M. Purver (Eds.), St. Julian’s, Malta, p. 2347–2361. External Links: Link, Document Cited by: §1, §2, §6. Li and zeng (2026) S. Li and D. zeng DiFA: inference-time forward-process alignment for diffusion models. In Forty-third International Conference on Machine Learning, External Links: Link Cited by: §6. Li et al. (2026) T. Li, W. Luo, Z. Chen, L. Ma, and G. Qi Self-guidance: boosting flow and diffusion generation on their own. IEEE Transactions on Pattern Analysis and Machine Intelligence 48 (1), p. 781–791. External Links: Document Cited by: §6. Li et al. (2025) T. Li, W. Chiang, E. Frick, L. Dunlap, T. Wu, B. Zhu, J. E. Gonzalez, and I. Stoica From crowdsourced data to high-quality benchmarks: arena-hard and benchbuilder pipeline. In Proceedings of the 42nd International Conference on Machine Learning, A. Singh, M. Fazel, D. Hsu, S. Lacoste-Julien, F. Berkenkamp, T. Maharaj, K. Wagstaff, and J. Zhu (Eds.), Proceedings of Machine Learning Research, Vol. 267, p. 34209–34231. External Links: Link Cited by: §C.2, §5.2. Li et al. (2022) X. Li, J. Thickstun, I. Gulrajani, P. S. Liang, and T. B. Hashimoto Diffusion-lm improves controllable text generation. In Advances in Neural Information Processing Systems, S. Koyejo, S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh (Eds.), Vol. 35, p. 4328–4343. External Links: Document, Link Cited by: §1, §6. Lipman et al. (2023) Y. Lipman, R. T. Q. Chen, H. Ben-Hamu, M. Nickel, and M. Le Flow matching for generative modeling. In The Eleventh International Conference on Learning Representations, External Links: Link Cited by: §1. Liu et al. (2024a) P. Liu, X. Tian, and Z. Lin Enable fast sampling for Seq2Seq text diffusion. In Findings of the Association for Computational Linguistics: EMNLP 2024, Y. Al-Onaizan, M. Bansal, and Y. Chen (Eds.), Miami, Florida, USA, p. 8495–8505. External Links: Link, Document Cited by: §1, §2, §6. Liu et al. (2024b) Y. Liu, T. Yang, S. Huang, Z. Zhang, H. Huang, F. Wei, W. Deng, F. Sun, and Q. Zhang Text diffusion with reinforced conditioning. External Links: 2402.14843, Link Cited by: §1, §6. Lu et al. (2025) C. Lu, Y. Zhou, F. Bao, J. Chen, C. Li, and J. Zhu DPM-solver++: fast solver for guided sampling of diffusion probabilistic models. Machine Intelligence Research 22 (4), p. 730–751. External Links: ISSN 2731-5398, Link, Document Cited by: §1, §6. Qian et al. (2024) Y. Qian, Q. Cai, Y. Pan, Y. Li, T. Yao, Q. Sun, and T. Mei Boosting diffusion models with moving average sampling in frequency domain. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 8911–8920. External Links: Link Cited by: §6. Sadat et al. (2026) S. Sadat, F. Salehi, and R. M. Weber HiGS: history-guided sampling for plug-and-play enhancement of diffusion models. In The Fourteenth International Conference on Learning Representations, External Links: Link Cited by: §C.9, Table 13, §1, §6. Savinov et al. (2022) N. Savinov, J. Chung, M. Binkowski, E. Elsen, and A. van den Oord Step-unrolled denoising autoencoders for text generation. In International Conference on Learning Representations, External Links: Link Cited by: §6. Shabalin et al. (2025) A. Shabalin, V. Meshchaninov, E. Chimbulatov, V. Lapikov, R. Kim, G. Bartosh, D. Molchanov, S. Markov, and D. Vetrov TEncDM: understanding the properties of the diffusion model in the space of language model encodings. External Links: 2402.19097, Link Cited by: §1, §6. Strudel et al. (2022) R. Strudel, C. Tallec, F. Altché, Y. Du, Y. Ganin, A. Mensch, W. Grathwohl, N. Savinov, S. Dieleman, L. Sifre, and R. Leblond Self-conditioned embedding diffusion for text generation. External Links: 2211.04236, Link Cited by: §1, §1, §2, §6. Tae et al. (2025) J. Tae, H. Ivison, S. Kumar, and A. Cohan TESS 2: a large-scale generalist diffusion language model. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), W. Che, J. Nabende, E. Shutova, and M. T. Pilehvar (Eds.), Vienna, Austria, p. 21171–21188. External Links: Link, Document, ISBN 979-8-89176-251-0 Cited by: §6. Wizadwongsa et al. (2024) S. Wizadwongsa, W. Chinchuthakun, P. Khungurn, A. Raj, and S. Suwajanakorn Diffusion sampling with momentum for mitigating divergence artifacts. In The Twelfth International Conference on Learning Representations, External Links: Link Cited by: Table 13, §6. Yang et al. (2026) Z. Yang, W. Guo, S. Zhang, S. S. Sahoo, Y. Chen, A. Vahdat, M. Mardani, and J. Thickstun Continuous diffusion scales competitively with discrete diffusion for language. External Links: 2605.18530, Link Cited by: §6. Yoo et al. (2026) J. Yoo, W. Kim, F. Eijkelboom, C. Lee, N. M. Boffi, S. Hong, and J. Kim Self-conditioned flow map language models via fixed-point flows. External Links: 2607.00714, Link Cited by: Figure 2, §6. Yuan et al. (2024) H. Yuan, Z. Yuan, C. Tan, F. Huang, and S. Huang Text diffusion model with encoder-decoder transformers for sequence-to-sequence generation. In Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers), K. Duh, H. Gomez, and S. Bethard (Eds.), Mexico City, Mexico, p. 22–39. External Links: Link, Document Cited by: §1, §2, §6. Zhang and Chen (2023) Q. Zhang and Y. Chen Fast sampling of diffusion models with exponential integrator. In The Eleventh International Conference on Learning Representations, External Links: Link Cited by: §6. Zhang et al. (2026) S. Zhang, Z. Chen, H. He, L. Du, and Z. Lan Low perplexity is repetition: a one-dimensional self-conditioning attractor in continuous diffusion lms. External Links: 2607.00588, Link Cited by: §C.9, Table 13, §1, §6. Zhao et al. (2023) W. Zhao, L. Bai, Y. Rao, J. Zhou, and J. Lu UniPC: a unified predictor-corrector framework for fast sampling of diffusion models. In Advances in Neural Information Processing Systems, A. Oh, T. Naumann, A. Globerson, K. Saenko, M. Hardt, and S. Levine (Eds.), Vol. 36, p. 49842–49869. External Links: Document, Link Cited by: §6. Zheng et al. (2023) K. Zheng, C. Lu, J. Chen, and J. Zhu DPM-solver-v3: improved diffusion ode solver with empirical model statistics. In Advances in Neural Information Processing Systems, A. Oh, T. Naumann, A. Globerson, K. Saenko, M. Hardt, and S. Levine (Eds.), Vol. 36, p. 55502–55542. External Links: Document, Link Cited by: §B.4, §6. Appendix A Derivations and Proofs A.1 Gaussian conditioning calculation Let T=τ2T=τ^2, a=σza= _z, and b=σmb= _m. Gaussian conditioning on (Z,M)(Z,M) gives the coefficient on M as bρ=T(a2−ρab)Δρ,Δρ=(T+a2)(T+b2)−(T+ρab)2>0.b_ρ= T(a^2-ρ ab) _ρ, _ρ=(T+a^2)(T+b^2)-(T+ρ ab)^2>0. (14) Neither marginal PY,ZP_Y,Z nor PY,MP_Y,M depends on ρ. For 0<a<b0<a<b, direct differentiation gives dbρdρ=−Tab[(b2−a2)(T+a2)+a2b2(ρ−a/b)2]Δρ2<0. db_ρdρ=- Tab [(b^2-a^2)(T+a^2)+a^2b^2(ρ-a/b)^2 ] _ρ^2<0. (15) Thus bρb_ρ vanishes at ρ=a/bρ=a/b and changes sign there. At ρ=1ρ=1, the shared-noise observations permit exact cancellation, Y=(bZ−aM)/(b−a)Y=(bZ-aM)/(b-a). The conditional fusion rule can therefore change sign while both feature–target marginals remain fixed. A.2 Exact average of past predictions using the solver coefficients For ELF, distinguish the time sks_k of the model evaluation (after any re-noising) from the target time tk+1t_k+1. Write the latent at that evaluation as zk=(1−sk)νk+skOk,z_k=(1-s_k) _k+s_kO_k, (16) where νk _k contains the complementary noise component and OkO_k is the normalized contribution of predictions previously supplied to the solver. Suppose the solver uses qkq_k to advance the latent from sks_k to tk+1t_k+1, with βk=tk+1−sk1−sk. _k= t_k+1-s_k1-s_k. (17) Substitution into the affine solver update gives Ok+1=(1−βk)skOk+βkqktk+1=(1−κk)Ok+κkqk,κk=βktk+1.O_k+1= (1- _k)s_kO_k+ _kq_kt_k+1=(1- _k)O_k+ _kq_k, _k= _kt_k+1. (18) The identity (1−βk)sk+βk=tk+1(1- _k)s_k+ _k=t_k+1 makes the two coefficients sum to one. The coefficient of qkq_k in the full latent is βk _k, whereas κk=βk/tk+1 _k= _k/t_k+1 is its update share inside normalized Ok+1O_k+1. With O0=0O_0=0 and s0=0s_0=0, the first normalized update has κ0=1 _0=1 and O1=q0O_1=q_0, even though the full-latent coefficient is only β0=t1 _0=t_1. Re-noising changes sks_k but preserves this algebraic separation. For a LangFlow transition from negative log-SNR γt _t to γs _s, the clean-prediction component after dividing by the signal coefficient obeys Os=e(γs−γt)/2Ot+(1−e(γs−γt)/2)qt.O_s=e^( _s- _t)/2O_t+ (1-e^( _s- _t)/2 )q_t. (19) Thus equation 8 holds with κ=1−e(γs−γt)/2κ=1-e^( _s- _t)/2. Additive stochastic terms belong to the complementary component of the latent and do not enter OkO_k. A.3 Weighted prediction over a solver step and step-size orders Hold the self-conditioning input fixed between two model evaluations, and let y(u)y(u) denote the normalized latent coordinate driven by the clean prediction. For self-conditioned language flows whose solver updates the latent affinely in the clean prediction, a change of time coordinate gives dydu=p(u)−y(u),p(u)=fθ(z(u),mk,t(u)). dydu=p(u)-y(u), p(u)=f_θ(z(u),m_k,t(u)). (20) Here u is the increasing solver time coordinate (ELF uses u=−log(1−t)u=- (1-t) in its active region; LangFlow uses u=−γ/2u=-γ/2) and hk=uk+1−uk>0h_k=u_k+1-u_k>0 is the width of step k in this coordinate. Multiplying equation 20 by eue^u gives du(euy(u))=eup(u). ddu (e^uy(u) )=e^up(u). (21) Integration over [uk,uk+h][u_k,u_k+h] yields y(uk+h)=e−hy(uk)+∫0he−(h−s)p(uk+s)s.y(u_k+h)=e^-hy(u_k)+ _0^he^-(h-s)p(u_k+s)\,ds. (22) Defining the step-average prediction p¯k(hk)=11−e−hk∫0hke−(hk−s)p(uk+s)s, p_k(h_k)= 11-e^-h_k _0^h_ke^-(h_k-s)p(u_k+s)\,ds, (23) the exact endpoint is y(uk+hk)=e−hky(uk)+(1−e−hk)p¯k(hk).y(u_k+h_k)=e^-h_ky(u_k)+(1-e^-h_k) p_k(h_k). (24) If the prediction path is three times differentiable, p(uk+s)=pk+sp˙k+s22p¨k+O(s3).p(u_k+s)=p_k+s p_k+ s^22 p_k+O(s^3). (25) Substitution into equation 23 gives Ck∗(h)=a1(h)p˙k+a2(h)2p¨k+O(h3),C_k^*(h)=a_1(h) p_k+ a_2(h)2 p_k+O(h^3), (26) where a1(h) a_1(h) =h−1+e−h1−e−h=h2+O(h2), = h-1+e^-h1-e^-h= h2+O(h^2), (27) a2(h) a_2(h) =h2−2h+2−2e−h1−e−h=h23+O(h3). = h^2-2h+2-2e^-h1-e^-h= h^23+O(h^3). Since 1−e−h=h+O(h2)1-e^-h=h+O(h^2), the true correction is first order and its contribution to the endpoint is second order. For any candidate BkB_k, substituting pk+ηBkp_k+η B_k for the interval prediction in equation 24 gives yk+1(ηB)−yk+1∗=(1−e−hk)(ηBk−Ck∗).y_k+1^(η B)-y_k+1^*=(1-e^-h_k)(η B_k-C_k^*). (28) The squared endpoint error therefore differs from equation 5 by the positive factor (1−e−hk)2(1-e^-h_k)^2, preserving the sign of the improvement criterion. The same weighted-average representation holds for a general scalar affine flow dydu=a(u)y(u)+b(u)p(u). dydu=a(u)y(u)+b(u)p(u). (29) If φ(v,u)=exp(∫uva(s)s), (v,u)= \! ( _u^va(s)\,ds ), (30) variation of constants weights p(u+s)p(u+s) by φ(u+h,u+s)b(u+s) (u+h,u+s)b(u+s). Normalizing this weight gives the corresponding step-average prediction whenever its integral is nonzero. ELF uses u=−log(1−t)u=- (1-t) on finite active intervals; the LangFlow update after dividing by the signal coefficient uses u=−γ/2u=-γ/2 and h=(γt−γs)/2h=( _t- _s)/2. The ELF terminal endpoint has an infinite unregularized log-clock width; the sampler uses the bounded interval feature defined in Appendix B.3 for this step. A.4 Correction for a finite, zero-initialized EMA For an affine sequence in the model-evaluation index, pi=p0+ivp_i=p_0+iv, with Ei+1=(1−α)Ei+αpiE_i+1=(1-α)E_i+α p_i, E0=0E_0=0, and α∈(0,1]α∈(0,1], let r=1−αr=1-α. Direct summation gives wnpn−En=Lnvw_np_n-E_n=L_nv, where wn=1−rnw_n=1-r^n and Ln=α∑j=1njrj−1=1−(n+1)rn+nrn+1α.L_n=α _j=1^nj\,r^j-1= 1-(n+1)r^n+nr^n+1α. (31) The raw residual satisfies pn−En=rnpn+Lnvp_n-E_n=r^np_n+L_nv, so the bias-corrected increment v^=(wnpn−En)/Ln v=(w_np_n-E_n)/L_n recovers v exactly. For α∈(0,1)α∈(0,1) and n≥1n≥ 1, the lag LnL_n is strictly positive and increases monotonically toward 1/α1/α; at α=1α=1, Ln=1L_n=1. This identity concerns increments per model evaluation. Converting them to derivatives in solver time also requires the time-grid spacing and prediction curvature. The sampler uses the raw residual as a history-based direction. Appendix B Method Details B.1 Principal-angle directions for self-conditioning Let WzW_z and WmW_m be the effective frozen input-projection matrices for the latent and self-conditioning inputs. Orthonormal row-space bases define projectors PzP_z and PmP_m. On the self-conditioning row space, PmPzPmQ=QDiag(ρ12,…,ρr2),0≤ρi≤1.P_mP_zP_mQ=QDiag( _1^2,…, _r^2), 0≤ _i≤ 1. (32) The basis Q and squared cosines ρi2 _i^2 are computed once from frozen model weights. At step k, the transform uses a^k=κk−1(1−δ¯k−1), a_k= _k-1(1- δ_k-1), (33) where κk−1 _k-1 is the solver’s update weight from equation 8 and δ¯k−1 δ_k-1 is the average clipped cosine distance defined in Appendix B.4. The state initialization κ−1=0 _-1=0, δ¯−1=0 δ_-1=0 makes F0=IF_0=I. Let λR(0)≥0 _R^(0)≥ 0 be the fixed base transform exponent, λR=λR(0)ηR _R= _R^(0) _R, r≥1r≥ 1, and 0<ϵfp≤10< _ fp≤ 1. Then bk,i b_k,i =max1−a^kρi2,ϵfp, = \1- a_k _i^2, _ fp\, (34) gk g_k =(∏i=1rbk,i)1/r, = ( _i=1^rb_k,i )^1/r, ℓk,i _k,i =(gkbk,i)λR. =(g_kb_k,i) _R. The resulting transform is Fk=I−Q(I−Diag(ℓk,1,…,ℓk,r))Q⊤.F_k=I-Q(I-Diag( _k,1,…, _k,r))Q . (35) It is symmetric, preserves the orthogonal complement of Q, and multiplies principal direction i by ℓk,i _k,i. The floor ϵfp _ fp prevents complete suppression of any direction. The common factor gkλRg_k _R adds a uniform contraction within the principal subspace; because 0<bk,i≤10<b_k,i≤ 1 and bk,ib_k,i is nonincreasing in ρi2 _i^2, the transform satisfies the contraction conditions in Section 3.2. Setting this factor to one isolates the direction-dependent dampening in the experiment reported in Appendix C.7. B.2 Input-projection geometry across models Table 2 reports the effective input-projection matrices used to compute the principal-angle basis. For ELF, the latent and self-conditioning inputs pass through a shared bottleneck projection before the first transformer block, producing effective matrices of shape 128×512128× 512 (rank 128128 in a 512512-dimensional input space). Because the row spaces are 128128-dimensional subspaces of ℝ512R^512, the principal-angle spectrum is non-trivial: squared cosines range from near zero to 0.920.92 with a well-spread distribution that is stable across checkpoints. For LangFlow, the self-conditioning projection is 768×1536768× 1536 and splits into two 768×768768× 768 blocks. Both are full rank, so Pz=Pm=IP_z=P_m=I and all squared cosines equal one. The self-conditioning transform therefore applies isotropic dampening in this architecture. Table 2: Effective input-projection geometry. ELF projections pass through a 128128-wide bottleneck, producing a well-spread principal-angle spectrum; LangFlow projections are full rank and the transform applies isotropic dampening. Canonical correlations ρi _i are the cosines of the principal angles between the two row spaces. Model Shape Rank ρmin _ ρmed _ med ρmax _ Mean ρi2 _i^2 |ρi≥0.9|| _i≥0.9| |ρi≤0.1|| _i≤0.1| ELF-B 128×512128×512 128 0.001 0.594 0.959 0.391 18 14 ELF-M 128×512128×512 128 0.001 0.581 0.950 0.381 17 13 ELF-L 128×512128×512 128 0.004 0.577 0.952 0.375 13 13 LangFlow 768×768768×768 768 full rank; all ρi=1 _i=1 B.3 Prediction history and solver-step width The EMA uses weight α∈(0,1]α∈(0,1] on the current prediction, with E0=0E_0=0. The history residual used by the sampler is Hk=[σk>0](pk−Ek),H_k=1[ _k>0](p_k-E_k), (36) and is active on steps with nonzero precomputed statistics. The zero-initialized EMA introduces a startup bias that decays as (1−α)k(1-α)^k; a bias-corrected variant v^k=(wkpk−Ek)/Lk v_k=(w_kp_k-E_k)/L_k exists (Appendix A.4), but the sampler uses the raw residual since the bias vanishes after a few steps. A second direction estimate compares pkp_k with the running weighted average OkO_k and is rescaled samplewise to match ‖Hk‖F\|H_k\|_F: Gk=‖Hk‖Fpk−Ok‖pk−Ok‖Fif ‖Hk‖F,‖pk−Ok‖F>ϵ,0otherwise,G_k= cases H_k _F p_k-O_k p_k-O_k _F&if \|H_k\|_F,\|p_k-O_k\|_F>ε,\\[4.0pt] 0&otherwise, cases (37) as in equation 9. The history-based correction direction is Uk=Hk+ηOΔuk(Hk−Gk).U_k=H_k+ _O\, u_k\,(H_k-G_k). (38) It reduces to HkH_k when the two estimates agree or the step width vanishes. For ELF, let tkstartt_k start be the official solver-grid start before any re-noising and define cϵ(t)=−log(1−t),t≤1−ϵ,−logϵ+t−(1−ϵ)ϵ,t>1−ϵ,c~ϵ(t)=cϵ(t)cϵ(1).c_ε(t)= cases- (1-t),&t≤ 1-ε,\\ - ε+ t-(1-ε)ε,&t>1-ε, cases c_ε(t)= c_ε(t)c_ε(1). (39) The feature used by the sampler is Δuk=c~ϵ(tk+1)−c~ϵ(tkstart) u_k= c_ε(t_k+1)- c_ε(t_k start). LangFlow uses Δuk=(γk−γk+1)/(γmax−γmin) u_k=( _k- _k+1)/( _ - _ ). Both lie in [0,1][0,1] on their sampling grids. The exact solver-time widths are −log(1−tk+1)+log(1−sk)- (1-t_k+1)+ (1-s_k) and (γk−γk+1)/2( _k- _k+1)/2, respectively (Appendix A.3). B.4 Empirical statistics from reference corrections The offline statistics are computed from a fixed reference recurrence that applies a correction during the middle portion of sampling and ramps smoothly. The specific constants below define this reference and are not varied per configuration. Let skrefs_k ref be a step-dependent activation schedule, gT(0)g_T^(0) a fixed base scale, and λkref=3.5gT(0)skref _k ref=3.5\,g_T^(0)s_k ref. On each reference trajectory, the correction is H~k H_k =λkref(pk−Ek), = _k ref(p_k-E_k), (40) G~k G_k =‖H~k‖Fpk−Ok‖pk−Ok‖F,‖H~k‖F,‖pk−Ok‖F>ϵ,0,otherwise, = cases\| H_k\|_F p_k-O_k\|p_k-O_k\|_F,&\| H_k\|_F,\|p_k-O_k\|_F>ε,\\[3.0pt] 0,&otherwise, cases U~k U_k =H~k+Δukδ~k⊙(H~k−G~k). = H_k+ u_k\, δ_k ( H_k- G_k). The activation schedule is skref=[0.40<rk≤0.95](rk−0.40)/0.55s_k ref=1[0.40<r_k≤ 0.95] (r_k-0.40)/0.55 for normalized sampling progress rkr_k; inactive tokens are zeroed throughout. During generation, Equation 38 uses Hk=pk−EkH_k=p_k-E_k on every step with σk>0 _k>0. For active token n, δ~k,n δ_k,n is min1,1−cos(H~k,n,G~k,n) \1,1- ( H_k,n, G_k,n)\ when both vectors are nondegenerate and zero otherwise. The reference recurrence supplies pk+U~kp_k+ U_k to the solver and stores the raw pkp_k for the next self-conditioning input. For a correction tensor V on active positions I, let I(V) M_I(V) be its token mean and CIV=V−I(V)C_IV=V- M_I(V) its centered component. Two disjoint frozen trajectory banks ℬμB_μ and ℬσB_σ define δ¯k δ_k =ξ∼ℬμ[1|Ikξ|∑n∈Ikξδ~k,nξ], =E_ξ _μ [ 1|I_k^ξ| _n∈ I_k^ξ δ_k,n^ξ ], (41) μk _k =ξ∼ℬμ[Ikξ(U~kξ)], =E_ξ _μ[ M_I_k^ξ( U_k^ξ)], σk2 _k^2 =∑ξ∈ℬσ‖CIkξU~kξ‖F2∑ξ∈ℬσ|Ikξ|D, = _ξ _σ\|C_I_k^ξ U_k^ξ\|_F^2 _ξ _σ|I_k^ξ|D, where D is the prediction width. Thus μk _k and σk _k summarize the correction used by the fixed reference recurrence. The true correction Ck∗C_k^* enters separately through the endpoint condition in equation 5. As with empirical model statistics in training-free solvers (32), the update form is fixed analytically and the frozen model and grid supply its coefficients. Here ξ∼ℬE_ξ denotes a uniform empirical average over the stored bank. B.5 Matching the empirical mean and RMS For active positions IkI_k, let CtokC_ tok center over IkI_k and RMSIkRMS_I_k compute the root-mean-square over active positions and width. If RMS(CtokUk)>0RMS(C_ tokU_k)>0, the unscaled projection Πk(Uk) _k(U_k) in equation 11 satisfies Ik(Πk)=μk,RMSIk(CtokΠk)=σk. M_I_k( _k)= _k, _I_k(C_ tok _k)= _k. (42) Among all tensors sharing these two moments, the centered component uniquely maximizes alignment with CtokUkC_ tokU_k (by Cauchy–Schwarz). The outer strength ηT _T scales both moments, so the final correction AkA_k has mean ηTμk _T _k and centered RMS ηTσk _T _k. Inactive positions receive zero correction. If the centered direction has zero norm, the implementation retains only ηTμk _T _k. The affine endpoint condition in equation 5 now applies with Bk=Πk(Uk)B_k= _k(U_k). Whenever ⟨Ck∗,Πk(Uk)⟩>0 C_k^*, _k(U_k) >0, a nonempty interval of positive ηT _T strictly improves the endpoint obtained from pkp_k alone. To separate the two contributions, write Nk=|Ik|N_k=|I_k| and C¯k∗=Ik(Ck∗) C_k^*= M_I_k(C_k^*). When the centered target is nonzero, θk _k denotes the angle between CtokCk∗C_ tokC_k^* and CtokUkC_ tokU_k. Orthogonality of the token-mean and centered components gives the exact decomposition ⟨Ck∗,Πk(Uk)⟩F= C_k^*, _k(U_k) _F= Nk⟨C¯k∗,μk⟩+σk⟨CtokCk∗,CtokUk⟩FRMSIk(CtokUk) N_k C_k^*, _k + _k C_ tokC_k^*,C_ tokU_k _FRMS_I_k(C_ tokU_k) (43) = = Nk⟨C¯k∗,μk⟩+σkNkD∥CtokCk∗∥Fcosθk. N_k C_k^*, _k + _k N_kD\,\|C_ tokC_k^*\|_F _k. The first term depends on how well the precomputed mean μk _k aligns with the true correction’s mean; the second depends on the angle θk _k between the centered correction direction and the centered target. Frozen reference trajectories set μk _k and σk _k; the current trajectory determines θk _k through UkU_k. The endpoint is strictly improved whenever 2⟨Ck∗,Πk(Uk)⟩F>ηT‖Πk(Uk)‖F22 C_k^*, _k(U_k) _F> _T\| _k(U_k)\|_F^2. Appendix C Additional Experimental Details and Results C.1 Evaluation protocol Every matched comparison uses the same frozen checkpoint, initial latent, base solver, time grid, sequence length, and number of model evaluations. Each configuration starts from the same random stream; generation and evaluation are run separately to avoid interference. ELF uses its official random logit-normal grid. Its SDE noise scale is 2.02.0, 2.02.0, 1.51.5, and 1.01.0 at 88, 1616, 3232, and 6464 NFE. The official self-conditioning scale is 3.03.0 for all evaluated NFE. Evaluation uses four ranks and official seeds 00–55; each seed produces 1,024 generations of length 1,024. The independent seed run is the unit for the reported standard error. LangFlow uses its official time grid, obtained from quantiles of the proposal distribution between 1−10−51-10^-5 and 10−510^-5, and seeds 00–55. Each seed produces 1,024 generations per setting. OpenWebText samples have length 1,024 and LM1B samples have length 128. ELF computes generative perplexity with frozen GPT-2 Large after applying its official filter to remove empty decoded samples, then retokenizes decoded text for unigram entropy. LangFlow computes entropy from generated token IDs and perplexity after decoding. Official and Untied Self-Conditioning configurations use the same evaluator convention in each comparison. Our ELF integration reproduces the official sampling code exactly: under matched model weights and random streams, all intermediate and final tensors agree elementwise across ranks. The LangFlow integration is verified analogously on closed-loop generation outputs. C.2 Pairwise LLM-judge evaluation protocol The pairwise evaluation adapts the Arena-Hard-Auto v2 protocol (13) for unconditional text generation. Every NFE in 8,16,32,64\8,16,32,64\ produces 1,024 text pairs by matching official and Untied Self-Conditioning generations on the same latent and sample index (LangFlow OpenWebText, seed 42, 1,024-token sequences). Each pair is presented twice to the judge with the answer order exactly reversed, yielding 8,192 judgments. The judge (DeepSeek V4 Pro, thinking enabled) receives neither method names nor NFE labels. It scores grammatical fluency, discourse coherence, semantic content, and degeneration artifacts, then returns a five-level verdict: A≫BA\! \!B, A>BA\!>\!B, A=BA\!=\!B, B>AB\!>\!A, B≫AB\! \!A. Significant verdicts (≫ ) contribute three binary observations to the Arena score; slight verdicts (>>) and ties contribute one. Pair-level outcomes merge the two games per pair: a pair is a candidate win if the weighted score exceeds 0.50.5, an official win if below 0.50.5, and a tie otherwise. The 95% confidence interval uses 10,000 paired bootstrap resamples. No judgments were excluded or reassigned. C.3 Complete endpoint results Tables 3 and 4 give the absolute GenPPL, uncertainty, and unigram entropy values corresponding to Figure 2. Table 3: Untied Self-Conditioning reduces GenPPL at every ELF NFE; the gap is largest at 8 NFE. Entries are mean ± standard error over six seeds, each with 1,024 samples. GenPPL ↓ H Model NFE Official Ours Official Ours ELF-B 8 70.6±1.770.6±1.7 42.7±2.342.7±2.3 5.23±.025.23±.02 5.10±.015.10±.01 16 32.2±0.832.2±0.8 28.7±1.028.7±1.0 5.18±.015.18±.01 5.16±.015.16±.01 32 23.7±0.323.7±0.3 21.0±0.221.0±0.2 5.15±.015.15±.01 5.14±.015.14±.01 64 19.0±0.219.0±0.2 18.0±0.318.0±0.3 5.08±.015.08±.01 5.10±.015.10±.01 ELF-M 8 108.5±7.4108.5±7.4 52.3±3.552.3±3.5 5.32±.035.32±.03 5.23±.005.23±.00 16 38.7±1.438.7±1.4 32.6±1.532.6±1.5 5.31±.015.31±.01 5.29±.015.29±.01 32 26.1±0.226.1±0.2 20.5±0.220.5±0.2 5.24±.005.24±.00 5.21±.005.21±.00 64 21.7±0.221.7±0.2 18.4±0.118.4±0.1 5.18±.015.18±.01 5.20±.005.20±.00 ELF-L 8 104.9±5.3104.9±5.3 55.7±3.255.7±3.2 5.31±.105.31±.10 5.08±.125.08±.12 16 46.9±1.746.9±1.7 41.9±2.141.9±2.1 5.40±.015.40±.01 5.37±.015.37±.01 32 30.1±0.330.1±0.3 23.4±0.323.4±0.3 5.34±.005.34±.00 5.29±.015.29±.01 64 23.6±0.223.6±0.2 19.1±0.119.1±0.1 5.28±.005.28±.00 5.26±.005.26±.00 Table 4: Untied Self-Conditioning improves LangFlow quality at every NFE on both datasets, reducing OpenWebText GenPPL from 531531 to 6262 at 8 NFE. Entries are mean ± standard error over six seeds, each with 1,024 samples (OpenWebText: 1,024 tokens; LM1B: 128 tokens). GenPPL ↓ H Data NFE Official Ours Official Ours OWT 8 531.2±3.4531.2±3.4 61.6±0.261.6±0.2 5.81±.005.81±.00 5.33±.005.33±.00 16 234.5±0.8234.5±0.8 48.8±0.148.8±0.1 5.69±.005.69±.00 5.30±.005.30±.00 32 123.0±0.5123.0±0.5 43.8±0.143.8±0.1 5.58±.005.58±.00 5.31±.005.31±.00 64 79.3±0.379.3±0.3 40.0±0.140.0±0.1 5.50±.005.50±.00 5.31±.005.31±.00 128 59.4±0.159.4±0.1 38.3±0.138.3±0.1 5.43±.005.43±.00 5.31±.005.31±.00 256 48.6±0.248.6±0.2 39.6±0.139.6±0.1 5.36±.005.36±.00 5.31±.005.31±.00 LM1B 8 264.0±1.3264.0±1.3 73.0±0.173.0±0.1 4.38±.004.38±.00 4.24±.004.24±.00 16 157.1±0.6157.1±0.6 63.2±0.263.2±0.2 4.35±.004.35±.00 4.24±.004.24±.00 32 113.8±0.7113.8±0.7 60.8±0.160.8±0.1 4.33±.004.33±.00 4.26±.004.26±.00 64 94.3±0.394.3±0.3 61.4±0.161.4±0.1 4.32±.004.32±.00 4.27±.004.27±.00 128 84.4±0.184.4±0.1 61.9±0.261.9±0.2 4.31±.004.31±.00 4.28±.004.28±.00 256 79.3±0.279.3±0.2 63.0±0.263.0±0.2 4.31±.004.31±.00 4.29±.004.29±.00 Table 5: Word-level 4-gram repetition rate (word Rep-4) for LangFlow endpoints. Entries are mean ± standard error over six seeds. Word Rep-4 (×10−3× 10^-3) Data NFE Official Ours OWT 8 0.11±.010.11±.01 1.82±.041.82±.04 16 0.51±.020.51±.02 3.59±.103.59±.10 32 1.54±.061.54±.06 5.33±.165.33±.16 64 3.95±.083.95±.08 7.78±.197.78±.19 128 8.38±.198.38±.19 11.92±.3111.92±.31 256 16.91±.4116.91±.41 18.51±.5318.51±.53 LM1B 8 0.07±.010.07±.01 0.47±.020.47±.02 16 0.18±.020.18±.02 0.67±.040.67±.04 32 0.34±.040.34±.04 0.66±.050.66±.05 64 0.57±.050.57±.05 0.87±.060.87±.06 128 0.81±.050.81±.05 1.11±.071.11±.07 256 1.11±.101.11±.10 1.34±.091.34±.09 C.4 Precomputation and inference-time settings The principal-angle directions for the latent and self-conditioning input projections are computed once from the frozen input weights. The per-step statistics in this subsection use only latent and prediction tensors. For ELF, finite differences measure the first-order model responses to perturbing the self-conditioning input and the prediction supplied to the solver. Their 2×22× 2 Gram matrix determines the base transform exponent λR(0) _R^(0) and the reference correction scale gT(0)g_T^(0). For LangFlow, the full-rank projection geometry (Appendix B.2) gives λR(0)=gT(0)=1 _R^(0)=g_T^(0)=1; the coefficients in Table 6 are effective strengths directly. For ELF, denote the response Gram matrix by G, the total strength by s0s_0, and the relative solver weight by φ . Define v=(1−φ,φ)⊤v=(1- , ) and =(1,1)⊤1=(1,1) . The resulting scales are χ=⊤Gv⊤Gv,λR(0)=s0χ(1−φ),gT(0)=s0χφ.χ= 1 G1v Gv, _R^(0)=s_0χ(1- ), g_T^(0)=s_0χ . (44) We set s0=φ=0.75s_0= =0.75, fixing the relative first-order response norm of the two interventions. The empirical per-step statistics in equation 41 use independent trajectory banks. ELF combines four sets of 1,024 trajectories for each model and NFE. Disjoint halves estimate the token mean and average clipped cosine distance on one side and the centered RMS on the other. LangFlow uses 128 independent latents with a disjoint 64/6464/64 split. These quantities summarize the correction in the fixed reference recurrence. High-resolution step averages are used only in the separate diagnostics of Appendix C.7. Table 6 lists the inference-time coefficients for all evaluated configurations. Lower NFE generally uses stronger correction, as fewer steps amplify the solver-introduced coupling (Section 5.3). On a single H100 GPU, the offline precomputation for one ELF-B NFE takes 128 seconds at 8 NFE and 401 seconds at 64 NFE. LangFlow precomputes all evaluated NFE in a single pass of 496 seconds (OWT) and 180 seconds (LM1B). Table 6: Inference-time coefficients (Algorithm 1). “—” marks the base value 11 (unchanged). System NFE ηR _R ηT _T ηO _O α ELF-B 8 3.3 1.7 — 0.7 16 2.3 0.5 — 0.8 32 2.3 1.1 — 0.8 64 1.5 — 1.5 0.8 ELF-M 8 2.3 1.5 6.0 0.8 16 1.3 0.9 — 0.8 32 1.7 1.7 0.7 — 64 3.3 2.5 0.8 0.8 ELF-L 8 2.3 2.0 2.0 0.5 16 3.0 0.8 1.5 0.8 32 2.5 2.2 — — 64 3.3 3.3 0.5 0.8 LangFlow OWT 8 2.5 1.9 — — 16, 32 1.3 1.7 — — 64, 128 1.3 1.9 — 0.8 256 1.3 1.3 — 0.8 LangFlow LM1B 8 2.5 2.5 — — 16 1.3 2.5 — 0.9 32, 128 0.6 2.5 — 0.8 64, 256 1.3 2.5 — 0.8 C.5 Changing correlation while preserving each noise-level distribution The coupling experiment uses 256 fresh OpenWebText examples with frozen ELF-B at 8 and 16 NFE. For each example and correlation in 0,0.25,0.5,0.75,1\0,0.25,0.5,0.75,1\, it constructs successive standardized Gaussian corruptions with the specified correlation. This preserves the Gaussian marginal at every evaluation. Within each correlation setting, the unmodified and modified model evaluations receive exactly the same current latent, time, and noise. Denote the base prediction by vbasev_ base and the prediction after applying one fixed self-conditioning transform by vscv_ sc. For the fixed target y, define d=vsc−vbased=v_ sc-v_ base and e=vbase−ye=v_ base-y. The reported coefficient is the exact empirical quadratic-risk optimum along this single direction, α∗(ρ)=−∑⟨e,d⟩∑‖d‖2,v(α)=vbase+αd.α^*(ρ)=- Σ e,d Σ\|d\|^2, v(α)=v_ base+α d. (45) This coefficient measures interpolation along the fixed self-conditioning-induced direction and is used only in this diagnostic. Table 7 reports the continuous optimum and the risk of applying the modification with coefficient one. The optimum decreases monotonically at both NFE, while the same modification applied with coefficient one crosses from lower to higher risk than the base model. The paired ρ=0ρ=0 minus ρ=1ρ=1 differences in the optimum are 0.580.58 at 8 NFE and 0.430.43 at 16 NFE, with 95% intervals [0.55,0.62][0.55,0.62] and [0.40,0.46][0.40,0.46]. Table 7: Changing temporal correlation while preserving the marginal distribution at each noise level. α∗α^* is the risk-optimal interpolation coefficient along one fixed self-conditioning-induced prediction direction; the ratio compares prediction risk at coefficient one with the base model. 8 NFE 16 NFE ρ α∗α^* risk ratio α∗α^* risk ratio 0.00 0.88 0.92 0.78 0.92 0.25 0.79 0.94 0.69 0.94 0.50 0.62 0.97 0.55 0.98 0.75 0.45 1.01 0.40 1.05 1.00 0.30 1.07 0.35 1.11 Controls using a preliminary prediction computed from the current noisy state have risk ratios near 1.021.02; controls without self-conditioning have ratios within 10−410^-4 of 11. The quadratic risk decomposition is exact to within 10−810^-8, confirming that the reported coefficients are not affected by numerical artifacts. C.6 Control transforms with the same eigenvalues The experiment in Table 8 disables the solver correction and uses 256 fresh ELF-B generations at 8 NFE. Every configuration supplies the raw prediction to the solver, stores it for the next model evaluation, and makes eight model evaluations. The overlap-aligned, reverse, and random transforms have exactly the same set of eigenvalues and mean strength. Their only difference is the assignment of these eigenvalues to the principal directions. For a self-conditioning input m, define ℰ(m)=12∑n∈Ik∑iρi2⟨mn,qi⟩2,E(m)= 12 _n∈ I_k _i _i^2 m_n,q_i ^2, (46) where qiq_i is principal direction i. Table 8 reports the cosine similarity between the self-conditioning modification and −∇ℰ- , the decrease in ℰE divided by the modification RMS, and both endpoint metrics. Table 9 repeats the three eigenvalue assignments with the solver correction active. The overlap-aligned assignment gives the highest cosine similarity, the largest normalized decrease in ℰE, and the lowest two likelihood measures. The configuration with solver correction but no self-conditioning transform separates the gain due to the transform in this matched comparison. Table 8: The overlap-aligned transform outperforms matched direction assignments. Every solver correction is disabled. Overlap-aligned, reverse, and random use the same retention eigenvalues and differ only in their assignment to principal directions. Alignment is the cosine with the steepest decrease in the overlap objective ℰE. Configuration Alignment ↑ Δℰ/RMS /RMS ↓ GenPPL ↓ Official – – 64.27 Overlap-aligned 0.94 −40.35-40.35k 55.64 Reversed 0.51 −22.94-22.94k 73.95 Random 0.74 −32.15-32.15k 59.59 Table 9: Self-conditioning transforms with the solver correction active. The three transformed configurations use the same eigenvalues, assigned to principal directions in different orders. ℰE is defined in equation 4. Configuration Alignment ↑ Δℰ/RMS /RMS ↓ GenPPL ↓ Official SC, no solver correction – – 65.23 Official SC, solver correction – – 38.17 Overlap-aligned 0.94 −53.62-53.62k 34.93 Reversed 0.54 −32.52-32.52k 40.21 Random 0.75 −43.69-43.69k 36.92 C.7 Reference averages over one solver step Subdividing each solver step into 32 substeps provides a high-resolution reference for the step-average prediction. Across 8, 16, and 32 NFE, the correction Ck∗C_k^* scales as first order in step width (fitted exponent 1.041.04, 95% CI [1.02,1.05][1.02,1.05]) and its contribution to the latent update scales as second order (fitted exponent 2.022.02, 95% CI [2.01,2.04][2.01,2.04]), matching the predicted orders from Section 3.3. The EMA-based estimate from past predictions outperforms equal-RMS permutations at every NFE. The scaling experiment uses frozen ELF-B at 8, 16, and 32 NFE. Every setting contains 128 fresh trajectories. The first 64 fit one nonnegative coefficient for each estimate derived from prediction history; the remaining 64 evaluate normalized MSE and equal-RMS permuted controls. Confidence intervals use 4,000 sample bootstrap resamples. Table 10 isolates the self-conditioning transform on 256 fresh ELF-B samples at 16 NFE with the solver correction disabled. Direction-dependent dampening outperforms both the official transform and uniform scaling, confirming that aligning dampening with the principal-angle spectrum improves generation quality. Table 10: Self-conditioning controls on 256 ELF-B samples at 16 NFE with the solver correction disabled. The overlap-aligned transform dampens principal direction i by max(1−a^kρi2,ϵfp) (1- a_k _i^2, _ fp) before any global scaling. Configuration GenPPL ↓ GPT-2 NLL ↓ H Official 29.44 3.39 5.13 Overlap-aligned dampening, no global scaling 26.56 3.28 5.06 Overlap-aligned dampening, method scaling 27.42 3.32 5.08 Uniform scaling 29.90 3.40 5.13 C.8 Where to apply the solver correction across checkpoints The main experiment on where to apply the solver correction uses 1,024 matched ELF-B generations at 8 NFE. A second experiment applies the same fixed solver correction to five additional model and NFE settings with 64 samples each and no parameter changes. As shown in Table 11, applying the correction in the solver outperforms the official sampler on both paired likelihoods. Adding the same correction to the next self-conditioning input underperforms the solver assignment. Table 11: Where to apply the solver correction across checkpoints. The first two differences apply it only in the solver update and compare with the official sampler. The last also adds it to the next self-conditioning input and compares with applying it only in the solver. Model NFE GPT-2 Δsolver _ solver OWT Δsolver _ solver OWT ΔnextSC _ next\,SC ELF-B 16 −0.07-0.07 −0.16-0.16 +3.00+3.00 ELF-M 8 −0.38-0.38 −0.31-0.31 +2.51+2.51 ELF-M 16 −0.17-0.17 −0.18-0.18 +3.45+3.45 ELF-L 8 −0.27-0.27 −0.25-0.25 +1.63+1.63 ELF-L 16 −0.14-0.14 −0.14-0.14 +2.75+2.75 C.9 Additional ablations The remaining tables use ELF-B, 8 NFE, the official SDE noise scale 2.02.0, official seed 0, and 1,024 matched generations per configuration. Table 12: Controls for the solver correction on ELF-B with eight model evaluations. Solver correction GenPPL ↓ H History-based direction with mean/RMS scaling 45.63 5.14 Common component only 57.21 4.98 History-based direction permuted across samples 49.27 4.99 Random direction with equal RMS 71.45 5.02 Official (no correction) 74.18 5.27 Table 12 changes the correction direction. A random equal-RMS direction nearly recovers official GenPPL, confirming that the correction gain requires the specific history-based direction. Removing the sample-specific component raises GenPPL, and permuting it across samples reduces the gain further. Table 13: Matched sampler comparison on frozen ELF-B at 8 NFE with 1,024 matched generations. All methods use the same model, time grid, and initial latent. Momentum (25), HiGS (20), and ACE (30) are described in Section 6. Sampler GenPPL ↓ H Official 74.18 5.27 Momentum 74.72 5.28 ACE 115.43 5.43 HiGS 56.90 5.18 HiGS + ACE 65.84 5.24 Untied Self-Conditioning 45.63 5.14 Table 13 compares Untied Self-Conditioning with training-free sampling methods under matched conditions on ELF-B at 8 NFE. Untied Self-Conditioning reaches 45.6345.63 GenPPL versus 56.9056.90 for HiGS (20) and 74.1874.18 for the official sampler. Combining HiGS with ACE (30) yields 65.8465.84, above Untied Self-Conditioning’s solver correction alone (50.0450.04; Table 1b). The paired improvement over HiGS with ACE is 0.360.36 GPT-2 NLL, with 95% interval [0.35,0.38][0.35,0.38]. C.10 Throughput Throughput is measured with the same compiled model, batch size, number of model evaluations, and generated outputs for the official and modified sampling loops. Both loops are deterministic and produce outputs identical to those used in the generation experiments. Table 14 reports total samples per second and their ratio. The ratio ranges from 0.910.91 to 0.980.98, with geometric mean 0.960.96: the sampler retains over 95% of the baseline throughput without requiring additional model evaluations, since all auxiliary quantities are derived from tensors already available in the sampling loop. Table 14: Sampling throughput under matched computation. Official and Untied Self-Conditioning use the same compiled model, batch size, NFE, and generated outputs. Retained is method throughput divided by official throughput. Model NFE Official (samples/s) Untied Self-Conditioning (samples/s) Retained ELF-B 8 72.98 67.59 92.6% 16 39.39 35.93 91.2% ELF-M 8 22.20 21.47 96.7% 16 11.78 11.38 96.6% ELF-L 8 10.42 10.21 98.0% 16 5.53 5.42 98.1% Geometric mean retained 95.5% C.11 Parameter sensitivity Figure 5: One-at-a-time sensitivity of GenPPL to each coefficient on ELF-B at 8 NFE. Each panel varies one coefficient while holding the other three at the values in Table 6. The dashed blue line marks the official sampler; the dotted red line marks the Table 6 value. All 24 evaluated points reduce GenPPL relative to the official sampler. The curves for ηR _R and ηO _O are nearly flat across the full [×12,×2][×\! 12,\,×\!2] range; doubling ηT _T gives the highest GenPPL among the tested variants. To assess coefficient robustness, we run a frozen one-at-a-time sensitivity study on ELF-B at 8 NFE using 256 independent paired samples that are disjoint from the reported evaluation data. The coefficient grid and evaluation protocol were fixed before any generations were run; all 24 evaluated points are reported without selection. Every evaluated point improves GenPPL over the paired official sampler. The self-conditioning coefficient ηR _R varies GenPPL by less than 0.8 over the full [×12,×2][×\! 12,\,×\!2] range (39.4–40.2), and ηO _O varies by 3.0 (38.4–41.3). The solver coefficient ηT _T is more sensitive: doubling it raises GenPPL to 64.3, still below the official sampler’s 65.8. Reducing ηT _T to ×12×\! 12 yields 44.0. GenPPL increases monotonically from 36.1 at α=12α= 12 to 56.7 at α=1α=1. Figure 5 visualizes all four coefficient sweeps. C.12 Per-sample quality on LangFlow Table 15: Paired-sample NLL comparison on LangFlow OpenWebText (six seeds, 1,024 samples per seed per NFE). “Higher NLL” counts samples where Untied Self-Conditioning has higher GPT-2 NLL than the matched official sample. NFE Paired samples Ours higher NLL Fraction Mean Δ 8 6,144 0 0.00%0.00\% −2.16-2.16 16 6,144 0 0.00%0.00\% −1.57-1.57 32 6,144 2 0.03%0.03\% −1.03-1.03 64 6,144 15 0.24%0.24\% −0.69-0.69 128 6,144 127 2.07%2.07\% −0.44-0.44 256 6,144 693 11.28%11.28\% −0.20-0.20 Table 15 reports per-sample NLL comparisons on LangFlow OpenWebText. At 8 and 16 NFE, every one of the 6,144 paired samples has lower NLL under Untied Self-Conditioning. C.13 Illustrative text comparisons We reproduce one matched pair for each model family to illustrate the decoded behavior. LangFlow examples come from the reported six-seed generations; ELF examples come from the disjoint 256-pair bank used in Section C.11. Each pair uses the same initial latent and sample index. The boxes contain the complete decoded generations, including end-of-text markers when present. Non-ASCII characters are transliterated for typesetting; no span is truncated. LangFlow–OpenWebText example. 64 NFE, sample 599, ΔNLL=−1.66 =-1.66. The Ours generation removes the repeated phrase “second place in second place” and sustains article-like segments for longer. Official <|endoftext|> All of that in mind, of course, was that calling grand-peat–where Monaco start the Elite line at home–would improve to second place in second place overall in 2017. Ratings were spoiled from the first rankings, because Pabennis tried 19 points outrightly, and so far away to his best for competitive titles, but we quickly never predict the end of a steep, hot year within Giga Champions and one of this year’s McFOR favourites. So for traveling to Valencia the rest of the year–every, for example–that’s my question of why, despite Sevan had so many promising moments in 2013, every player still felt the same cliche, wondrous pace about his own country, when in the Multiverse, it was Fernandez as a good roommate, not just my own wife and teenagers who had a dedicated, tactical approach. For as long I went, the confidence I’d found throughout the entire season (that optimism happened now just as soon as I can imagine) was just real for the ideal year for anything. Valencia is there, we’re ahead, and it still feels bad to see it coming yet quickly.<|endoftext|>DSP Spaces, the Jaaharabad Airways Ltd, is building the Qatar port and will connect it to Ahmedabad Airport for the cross-border services. The port will begin at Mokintabad International Airport and will then connect to Panurbiba National Airport. Although the airport will be closed, the port will also connect back to Disa, Ag-a-Palad and a public waychard known as Zone Na. The Panurbiba Center will also serve the so-called Lid Ban log-airlets and outlets as part of the project. The Lid Ban Center will also serve the conservation of water provided for the port’s special water deck. Besides the airport, DSP will move around the two-lane branches with an M/6 system and serve up to 2 hundred passengers. The campus or 251 passengers. Commenting at the project, DSP Chairman, Gindas Kumar, said the project would be ”donural home for Ahmedabad people.” ”With the Qatar port terminal, Zone Na will be Ahmedabad’s major link at the border. All investment investments will be made into this airport to make a much smoother environment for Indians,” said Kumar. ”The port will be extended from Zone Na to the Ahmedabad Air location without further delays for shuttle operators to no services from Ahmedabad International Airport. This will be a good haven for noncoperative passenger services and the port will have a fast link to its Qatar border.” Zone Na Director of visual Group Joan Engmave told reporters that ”The port, the arch from Mecca to Danda, was handed over to Qatar, and the frame will soon be out.” Refaj Airport, Ahmedabad Airport and Matinadh Airport are the new Ahmedabad airports to take advantage of the Qatar proper. The project is another off-use airport such as the Public Satellite airport and welllands.<|endoftext|>Two weeks ago I waited for Nigel Farage’s half-day residence near Queen Square in Goldstone Paul’s, came on a passport ”thatks our rise toward the independence vote” and sealed the decision to ”born living Europeans that I didn’t tell voters”. ”To assure you that this time round, or any other time of year, I must abide by the clear code of fact that I pass along for the visit,” cracked alily. The passport had turned me over to the City. I stood confronting myself on Yorkshire Street, in Goldstone Paul’s, suddenly mentioning Nigel Farage’s MPs as if he had decided to call them ”friends” in ”Hab that Wh nearby”. I was deeply informed of this distinction and certainly obliged to hypothesise about it from a source I would only suspect at Ukip if unspecified. It is still unsurprising, though, that the case of Ukip in general was derived from his previously made Southampton speculation. And there are some recent facts to examine. But what Ukip’s main milons, or the compassionate people themselves have told us about their spin, Nigel Farage’s change implies an overt and strengthened leadership has almost nothing to do with people. Indeed it is true that many times net immigration left a devaluous stock of workers and brings in desperate people to reject it for access. The standards proposed by EU states concerning net immigration have made it clear that we should never let so many migrants to leave, because of the interests of the migrant and internally rather than the overseas taxpayers; which is precisely why it is common interest that Ukip’s extreme leadership has then rightly sent us up into Europe. That past national day, in France, Mr Farage periodically holed himself and European countries<|endoftext|> Ours <|endoftext|> All of that in mind, of course, was a telling no-brainer, because Monaco won the Champions League in 2014 and slipped back to second place in the Champions League in 2017. Ratings were spoiled from the first round, because the Bavarian crashed 19 points outrightly, and so nobody seemed to know what for sure, because instead they struggled to predict the end of a very, big year within Borussia Dortmund and one of the world’s top F1 runners. So for me anyway, the out of the year (2016, for example) wasn’t my question of why, the Bavarian had so many great moments in 2016, every league move, the same flirting, the aerrolic event, etc, but for the Bavarian, it was at last a great day, not just my own wife and children who had a great, great experience. Despite how close I was, the passion I’d seen throughout the entire season (that has happened here just as often as I can imagine) was just personal for the sake of the thing. Monaco is special, they’re strong, and it would be bad to see it come true…<|endoftext|>Hamid Karzai, the Haqqani Taliban headliner, indicated that the United States would have to bury Mr. Karzai for the cease-fire talks. The new peace agreement, an apparent move by Mr. Karzai to meet with the United States, has been in force after the disputed elections of Sunday. The military has also engaged in an effort to preserve Mr. Karzai’s authority holding hold as early as Fallujah. But on the Islamic State’s announcement, Mr. Hamid Karzai, president of the American Parliament, said the U.N. ”absolutelyprised” that the United States would have to intervene. Photo Mr. Karzai added that the U.N. announcement about the renewed peace talks should allow the United States to take further steps and exchange its obligations as well as with the United Nations. Advertisement Continue reading the main story Mr. Karzai, who had called the peace talks ”stalled” after Afghan fighters had rallied hard to take the coup push against Mr. Karzai, said he didn’t know if the United States was trading in or if Karzai was able to bury the peace agreements just after carrying out the reconciliation. Yol. Karzai signed off a deal to rein Talibanate Mr. Karzai’s forces to keep Mr. Karzai in power. But Mr. Karzai has also formally cred the agreement and says he won’t sign a final peace agreement. Newsletter Sign Up Continue reading the main story Please verify you’re not a robot by clicking the box. Invalid email address. Please re-enter. You must select a newsletter to subscribe to. Sign Up You will receive emails containing news content , updates and promotions from The New York Times. You may opt-out at any time. You agree to receive occasional updates and special offers for The New York Times’s products and services. Thank you for subscribing. An error has occurred. Please try again later. View all New York Times newsletters. Mr. Karzai said the agreement was ”a good step toward the peace process” and called the peace agreement ”a step solely that I didn’t talk about.” On a day that saw conditions in rural Afghanistan triple-levels of temperature, the United States assessed a clear line of terms and amred along to Mr. Karzai’s presidency. The decision was turned head over to the United States. Heads of Peace on Sunday dismissed reports that Mr. Sharif’s forces had asked Mr. Karzai for talks to prevent his departure. A statement on Sunday said the Afghan government had ”confirmed that Mr. Karzai’s forces had been in force.” Advertisement Continue reading the main story Mr. Karzai issued a statement hours after he amred the agreement, rejecting the fact that although the talks had ended, ”extraordinary changes had been made for the recent developments.” The Afghan government’s main said that, although the United States would resume talks before the parties signed, the agreement’s effect dissolved in October and urged Mr. Karzai to stop giving discussions. But it also insisted that the United States would reach a bargaining gap between the parties before talks in Kabul and to compromise its efforts to pass a peace decree by the end of escalating disputes. ”We will never really allow both sides to negotiate,” Mr. Karzai’s spokesman said. ”You don’t negotiate a bad relationship when there’s clear security.” Mr. Karzai and his troops were, in fact, supporters of both the United States and NATO.<|endoftext|> ELF-B example. 8 NFE, ΔNLL=−2.04 =-2.04. The Ours generation recovers from token-level collapse into connected sentences about a sustained topic. Official In conclusion conclusion,,,,:, conclusion,. maxim maxim. >> din., din, din, din., am, >>,..,,.. >>,., din din.,,,,,, din. din din,., din…,., din.. summarize.,,,,. Ours In this article, a panel asked to determine the tank of the tank that is holding and the amount of tank that the tank is holding. Specifically the insights are determined by the size of the size of the tank tank, the location of the tank containers are holding and temperature, of the forced pressures of the tank held. The study is as described in the last part of the paper. In this article, again, calculations computes different features of tank storage, including 11 percent of the tank, half percent size included, 3/4 of the tank capacity, and the total amount of tank. If you want to use an increase in the tank, what is the total that you need? What can you use to determine how much tank you need? In this case, when you create a package so that once the maximum maximum capacity, the maximum can be estimated as 330 million USD or less because there are 20 storage stations to deliver the total, you will need to add an additional amount of storage per 20 storage containers to deliver the total. As example, if you create a platform tank, it will deliver the total of about 20 tanks all in a day. If you want to create the tank in a specific location, you would also need to create a platform tank. You have to have the tank that stores the containers holding the tank. The platform platform also has a locked pit which dumps the garbage and the device to hold out tank to the tank. This way the whole tank must be in a tight underground pit of the water, and then the tank tank must be filled in water so that it can run properly. As long as there is not enough water to hold the tank, the decay is required to get the perfect tank of the tank. But the major advantage of a platform holding is you use it to store the storage and water and to transporte the data flows to foreign systems with a specific storage point. First and foremost, you ensure that the platform storage is exactly that is fit for the system you need. Platform holding is a staple of easily defined and easily integrated into your platform platform. Once you have a platform platform ready, you can create your own platform platform. Platform holding brings in some of the most advanced storage technologies available, and it includes countless different features and technical details that you can use. There are plenty of apps that go to you of how you want to to launch your own platform platform, and you can use them often when you need platform holding. The fundamentals of platform holding are one of the fundamental principles of platform holding. The features of platform holding are easily defined and include many different elements, including popular software, programable design tools, intelligent design plugins, color charts, color tables, graphs, data, and customized background effects. They can be specially customized and implemented in custom graphics, some that adapt custom design features for customized applications, such as charts and maps. They can also be specially customized with apps used to create user-based playlists. If you want an tank that is a platform platform, there are features to be used. For example, I remember my reading an avatar book. I remember I reading the Oldboy game, when I was 16, and I was screaming and the kid started to think and I was kill me, and then he pulled her on the floor and shot me down. I didn’t want to see her, but I was 13, and I didn’t want to look at that much. So I’m shut to sleep, and waste my life fighting and take the life, and let her go. I mean, she’s really insane, and I can’t stand her. And then I’m all out of love! So this is a great comic book in my life, and I have so much to share. I feel really wasted for reading, too. While there is still more to read, and I’m getting really excited, I’l make some some cool ideas that I find worth reading and reading. If you’d like to share your insight, tell us your thoughts and inspiration, or let us take part. The chance to explore it today, you we’l get to explore all of the beautiful locales where you’l want to hang together, walk the streets, walk the streets, and enjoy amazing games and competitions. Next, you’l have a new sport, our global video game, where you can raise your children, inspire family and friends, and show their faith and heart. In great respect to Andrew Berger, Tettarian anscientist, is a surgid and author of writing the Prophet Creid and War Naraous Abiql Abiq is a Jewish man who has been out of his own home in Iraq-occupied Islamic Arabia, for for the purpose of the killings of the Taliban while he undertakes the military operations in the nearby Iraq Arab militants forces.