---
title: Fusion Surface Models in Diffusion Systems
url: https://www.emergentmind.com/topics/fusion-surface-models
type: topic
---

# Fusion Surface Models in Diffusion Systems

Searching arXiv for the provided papers and related diffusion conditioning/fusion terminology.
“Fusion surface models” is not a standardized designation in the recent diffusion literature considered here. A plausible interpretation is an umbrella label for conditional generative systems in which external signals are fused with a latent denoising state or trajectory through concatenation, feature addition, cross-attention, token-wise gating, or predictive gradient transport. Under that reading, the relevant literature includes MPC-like guide approximation for sparse conditional sampling [2210.12192], unified gated condition injection for linear-attention diffusion transformers [2603.27666], gated radiomics-geometric fusion for lesion-controllable mammogram synthesis [2507.19201], and slice-wise latent conditioning for scientific data compression with deterministic decoding and error guarantees [2502.12951]. The unifying issue across these systems is not merely the existence of conditioning, but the locus and mechanism of fusion inside the reverse process.

## 1. Conceptual scope and generative formulations

Recent work shows that conditional fusion can be attached to several generative objectives rather than a single canonical diffusion loss. In the denoising setting, a diffusion model $\hat{x}_\theta$ may be trained with the weighted reconstruction objective
\[
\mathbb{E}_{x, c, \boldsymbol{\epsilon}, t} \left[ w_t \left\| \hat{x}_\theta (\alpha_t x + \sigma_t \boldsymbol{\epsilon}, c) - x \right\|_2^2 \right],
\]
with the associated noise-prediction parameterization
\[
\hat{x}_\theta(z_t,c) = \frac{z_t - \sigma_t \epsilon_\theta(z_t,c)}{\alpha_t},
\]
and sampling update
\[
z_{t-1} = \frac{z_t - \sigma_t \tilde{\epsilon}_\theta}{\alpha_t}.
\]
Closely related DDPM-style conditional formulations appear in mammogram synthesis and scientific compression, where the model is trained by a noise-prediction loss and the reverse process is conditioned on masks, lesion descriptors, or slice-wise latent codes [2210.12192; 2507.19201; 2502.12951].

A different backbone appears in linear-attention diffusion transformers built on SANA, where controllable generation is trained with the flow-matching objective
\[
\mathcal {L}_{F M}:=\mathbb{E}_{t, p_t(x)}\left[\left\|v_t(x) - u_t(x)\right\|_2^2\right].
\]
There, the fusion problem is not how to modify a U-Net denoiser at every step, but how to preserve control signals inside a linear-attention stack whose information compression can weaken conditional pathways [2603.27666].

This suggests that the central design variable is the conditional interface itself. The same broad problem—how to combine global structure, local detail, and external control—recurs across denoising diffusion, classifier-free guidance, flow matching, and deterministic conditional decoding.

## 2. Recurrent fusion operators

Across the surveyed systems, five recurrent fusion operators appear: direct feature addition for aligned conditions, concatenation of latent and condition embeddings, token-sequence interaction through attention, token-wise gating after interaction, and predictive gradient transport through the denoising trajectory. Slice-wise conditioning in scientific compression is a sixth pattern, but it acts more as structured conditioning than as gating in the usual neural-network sense [2603.27666; 2507.19201; 2210.12192; 2502.12951].

| Mechanism | Representative formulation | Reported role |
|---|---|---|
| Feature addition | $h_x \leftarrow h_x + h_c$ | Spatially aligned conditioning |
| Token interaction plus gating | $[X; C_T; C_I]$; ${h_X}^{\prime}= \sigma(XW_{g1}) \odot h_X$ | Flexible multi-type control with token preservation |
| Soft-mask concatenation | $\epsilon_\theta\!\left(\mathtt{concat}(z_t,\mathcal{E}(\mathcal{G}(M))), t, \mathbf{c}\right)$ | Global anatomical control |
| Predictive guide transport | $\boldsymbol{\xi}_t = - \nabla_{z_t}\ell(z_{t-\delta})$ | Approximate missing current-step guidance |
| Slice-wise latent conditioning | $p_\theta(\boldsymbol{x}_{i,t-1}|\boldsymbol{x}_{i,t},\boldsymbol{z}_i^e)$ | 3D-to-2D conditional reconstruction |

The principal distinction is between fusion by correspondence and fusion by selection. Direct addition assumes that the condition and latent occupy compatible spatial coordinates. Gated fusion, top-$k$ selection, and predictive gradient transport instead attempt to decide which conditional components should survive, which should be suppressed, and how control should be propagated when explicit alignment is weak or unavailable.

## 3. Predictive fusion along the denoising trajectory

A particularly explicit trajectory-level formulation appears in "Conditional Diffusion with Less Explicit Guidance via Model Predictive Control" [2210.12192]. The paper addresses conditional sampling when explicit guidance is available only at a small number of diffusion steps, rather than at every denoising step. Standard baselines such as classifier guidance, classifier-free guidance, and conditional diffusion models normally require an explicit conditional guide throughout the trajectory. The proposed alternative treats diffusion sampling as a control problem with state $s_t=z_t$, control $a_t=\tilde{\epsilon}_\theta$, dynamics $f$ given by denoising, and a future conditional objective $\ell_t$.

The central mechanism is lookahead guidance. The model simulates unconditional denoising from $z_t$ to a future latent $z_{t-\delta}$, evaluates explicit guidance there, and backpropagates that signal to the current latent:
\[
\boldsymbol{\xi}_t = - \nabla_{z_t}\ell(z_{t-\delta}).
\]
For a noised classifier, the objective is based on $\log p_{t-\delta}(c \mid z_{t-\delta})$; for a conditional diffusion model, the objective is a squared error around a target defined from $\hat{x}_\theta(z_{t-\delta}, c)$ with gradients through the target blocked. The paper frames this as diffusion-analogue receding-horizon control: optimize using a short simulated future, apply only the first action, and repeat at the next step.

The reported approximation quality is unusually high. The approximated gradient has cosine similarity above $0.99$ even when the approximation spans $500$ of $1000$ diffusion steps, and similarity remains above $0.80$ even at $\delta=900$. By contrast, a CLIP spherical loss applied after denoising to image space yields a gradient with mean cosine similarity around $0.01$, described as nearly orthogonal to the true diffusion guide. This supports a strong methodological distinction: guidance should be propagated through the diffusion latent dynamics, not through a clean-image objective.

The main experimental regime uses Stable Diffusion, a PLMS scheduler, classifier-free guidance with $w=2$, and MS-COCO prompts. Explicit guidance is restricted to five time steps, within an eight-step schedule
\[
[875, 750, 625, 500, 375, 250, 125, 0].
\]
Explicit guidance is applied at $[750, 500, 250, 125, 0]$, while MPC guidance is inserted at $[875, 625, 375]$. Under this regime, the baseline with $n=5$ reports FID to Reference $400.0$ and FID to Gold Standard $443.28$, whereas adding MPC with $k=3$ yields $282.4$ and $312.84$. The paper also notes qualitative cases in which MPC samples appeared closer to the gold standard than the reference itself.

## 4. Token-wise gated injection in linear-attention transformers

"Gated Condition Injection without Multimodal Attention: Towards Controllable Linear-Attention Transformers" develops a fusion architecture tailored to linear-attention diffusion transformers such as SANA [2603.27666]. The motivation is partly systems-oriented: controllable diffusion is usually deployed on cloud models, raising privacy concerns because users must upload sensitive images, sketches, or identity cues, while linear-attention backbones are described as scalable and memory-efficient enough for edge or on-device use.

The paper diagnoses two transfer failures. ControlNet-style feature addition,
\[
h_x \leftarrow h_x + h_c,
\]
works when the condition is spatially aligned with the latent, such as edges, depth, or pose maps, but breaks down for non-aligned conditions such as subject-driven generation. OminiControl-style multimodal attention is more general, since it converts conditions into tokens and mixes them with noisy latent tokens, but on linear-attention backbones it converges slowly, especially for spatially aligned tasks. The stated reason is that linear attention compresses information more aggressively than softmax attention, so important control signals may be suppressed unless they are explicitly preserved.

The proposed framework, described as GCDM or GateControl, adopts a shared-module, dual-path pipeline. The image condition and noisy latent are transformed through the same VAE encoder and then passed through an identical model structure, with LoRA fine-tuning instead of full finetuning. Path 1 performs internal interaction by concatenating latent tokens $X$, text tokens $C_T$, and image-condition tokens $C_I$ into a single token sequence $[X; C_T; C_I]$. Path 2 applies token-wise gating after the interaction:
\[
{h_X}^{\prime}= \sigma(XW_{g1}) \odot h_X,\qquad
{h_{C_I}}^{\prime}= \sigma(C_IW_{g2}) \odot h_{C_I},
\]
followed by
\[
h_X \leftarrow {h_X}^{\prime} + {h_{C_I}}^{\prime}.
\]
The gate is explicitly token-wise rather than full element-wise, so each token receives its own score.

The framework is trained on SANA-1.0 with LoRA rank $16$, using Prodigy with safeguard warmup and bias correction, weight decay $0.01$, learning rate $1$, batch size $16$ per GPU, on $4$ NVIDIA H200 GPUs. Subject-driven generation is trained on the $1024 \times 1024$ subset of Subject200K for $20\text{K}$ steps, while spatially aligned tasks are trained on $10\text{K}$ images from Text-to-Image-2M for $10\text{K}$ steps. The convergence claim is central: spatial tasks in OminiControl require roughly $50\text{k}$ steps versus $15\text{k}$ for subject-driven tasks in the original setup, whereas the gated version for canny-to-image surpasses a baseline without gated spatial alignment using only $1\text{k}$ steps, and the baseline needs more than $10\text{k}$ steps to reach comparable positional correspondence.

The quantitative results are reported across aligned and non-aligned control. On Canny, the gated method reports F1 $0.26$, FID $21.97$, SSIM $0.37$, MUSIQ $71.86$, and CLIP-Image $0.762$, compared with OminiControl’s F1 $0.23$, FID $22.91$, SSIM $0.35$, MUSIQ $71.99$, and CLIP-Image $0.750$. On another aligned benchmark at $512 \times 512$, it reports MSE $626$, FID $30.15$, MUSIQ $72.30$, and CLIP-Image $0.739$, compared with OminiControl’s MSE $803$, FID $30.95$, MUSIQ $71.65$, and CLIP-Image $0.735$. On deblurring, it reports $14$, FID $7.45$, SSIM $0.64$, MUSIQ $65.59$, and CLIP-Image $0.934$, compared with OminiControl’s $120$, FID $10.65$, SSIM $0.61$, MUSIQ $67.28$, and CLIP-Image $0.896$. In subject-driven generation on DreamBooth, the GPT-4o-based score increases from $38.7$ for IP-Adapter on SANA to $60.6$. Parameter overhead is also reported as small: the gating module adds only $0.09\text{M}$ parameters, about $0.006\%$ of SANA’s size, and the total additional trainable parameters with LoRA are $18.9\text{M}$, versus $590\text{M}$ extra parameters for ControlNet on SANA-scale models.

## 5. Hybrid global-local fusion in mammogram synthesis

A domain-specific but technically revealing instance appears in "Joint Holistic and Lesion Controllable Mammogram Synthesis via Gated Conditional Diffusion Model" [2507.19201]. The problem is not only to synthesize realistic mammograms, but to preserve lesion shape, texture, radiomic appearance, and anatomical blending with surrounding tissue. The model therefore combines two conditioning pathways: a holistic mask-conditioning path for breast layout and lesion placement, and a gated lesion-control branch for lesion-specific clinical descriptors.

The backbone is a Stable Diffusion v1.5-style latent denoising diffusion model. A real mammogram $x_0 \in \mathbb{R}^{3\times H\times W}$ is encoded by a VAE encoder $\mathcal{E}$ into latent $z_0$, and diffusion proceeds in latent space. The global branch uses a three-channel mask $M \in \mathbb{R}^{3\times H\times W}$ for background, breast tissue, and lesion or mass region. A Gaussian blur operator $\mathcal{G}$ is applied to the lesion channel to create a soft mask with a transitional region, and the denoiser receives the concatenated condition
\[
\epsilon_\theta\!\left(\mathtt{concat}(z_t,\mathcal{E}(\mathcal{G}(M))), t\right).
\]
The role of the soft mask is explicit: it introduces a transitional zone between lesion and surrounding tissue, so the model can learn more realistic anatomical blending and avoid hard-edged artifacts.

The lesion-control branch supplies what the paper treats as clinically meaningful lesion descriptors. A $67$-dimensional radiomic vector $f$ is extracted with PyRadiomics, consisting of $9$ shape features, $18$ histogram or first-order features, $16$ GLSZM features, and $24$ GLCM features. In parallel, the lesion mask is embedded using CLIP, producing geometric candidate features $f_{geo}\in \mathbb{R}^{m\times 768}$. The model forms a cross-combination set
\[
f_{comb}\in \mathbb{R}^{m\times n\times (768+67)},
\]
computes a relevance score
\[
\mathbf{w}_{gate}=\mathbf{AVG}(f_{comb}) \odot \mathbf{MLP}(f_{comb}),
\]
and retains the most relevant fused candidates through
\[
\mathbf{c}=\mathtt{Conv}\big(\mathtt{TopK}(f_{comb}+\mathbf{w}_{gate}\odot f_{comb})\big).
\]
This output $\mathbf{c}$ is injected into the diffusion U-Net via cross-attention. The paper’s interpretation is that naive concatenation can introduce noisy or conflicting control signals, whereas gating dynamically emphasizes the most informative geometry-radiomics combinations.

The implementation is specific: images are resized to $256\times256$, the latent has size $4\times32\times32$, AdamW is used with learning rate $1\times10^{-4}$, batch size $32$ per GPU, and training runs for $400$ epochs on $2$ NVIDIA A100 80GB GPUs. Diffusion uses $T=1000$ steps, inference uses $50$ steps, the noise schedule $\beta_t$ increases linearly from $8.5\times10^{-4}$ to $0.012$, classifier-free guidance masks conditional inputs with probability $0.1$ during training and uses guidance scale $7.5$ at inference, Gaussian blur uses $\sigma=1.5$, and the gate-fusion hyperparameters are $m=n=k=5$.

Experiments are conducted on VinDr-Mammo using only cranial-caudal oblique images. The split is $6704$ training images, $748$ validation images, and $1871$ test images, with $373$, $45$, and $104$ mass-containing images in the respective partitions. Against SPADE, pSp, SR3, ControlNet, and Seg-Diff, the model reports FID $26.77$, Mass IoU $86.30\%$, Breast IoU $97.63\%$, and Pixel Accuracy $98.41\%$. Relative to the second-best result, the paper reports a $12.2\%$ improvement in FID and a $2.71\%$ improvement in Mass IoU, with statistically significant $p$-values of $0.025$ and $0.039$. Ablations show a progression from a mask-only baseline with FID $31.25$ and Mass IoU $83.48\%$, to adding the lesion control branch with $29.60$ and $84.97\%$, then adding radiomics features with $28.21$ and $85.78\%$, and finally the full model with gated fusion. The soft-mask study further indicates a trade-off: increasing softness beyond $\sigma=1.5$ improves FID but reduces Mass IoU.

## 6. Slice-wise conditional fusion in scientific compression and recurring limitations

"Guaranteed Conditional Diffusion: 3D Block-based Models for Scientific Data Compression" is an important boundary case because it does not define a model literally called a gated conditional diffusion model and does not introduce a gate layer in the standard architectural sense [2502.12951]. Instead, it presents Guaranteed Conditional Diffusion with Tensor Correction, or GCDTC. The front end partitions scientific data into $16 \times 64 \times 64$ 3D tensor blocks, compresses them into latent variables $\boldsymbol{z}$, transforms them into a 3D embedding $\boldsymbol{z}^e$, quantizes each value by
\[
\left\lfloor \frac{b}{a} z \right\rfloor
\]
with $b=1000$ and $a=16$, and entropy-codes the result with Huffman coding. The diffusion decoder is a 2D denoising U-Net conditioned slice-by-slice on latent embeddings $\boldsymbol{z}_i^e$:
\[
p_\theta(\boldsymbol{x}_{i,t-1}|\boldsymbol{x}_{i,t},\boldsymbol{z}_i^e).
\]
Inference is deterministic because reconstruction starts from zero noise, $\boldsymbol{x}_{i,T}=\boldsymbol{0}$. A tensor correction network and a PCA-based error guarantee stage then enforce a maximum distortion target $\tau$. On E3SM and S3D, the framework outperforms a standard convolutional autoencoder, achieves at least $2\times$ higher compression ratios above $10^{-4}$ NRMSE in E3SM, and is competitive with SZ3 on S3D, but decoding is slow: GCDTC reports $978.2\ \text{s}$, compared with GCAE at $2.2\ \text{s}$ and SZ at $12.2\ \text{s}$.

Taken together, these works also delimit the main misconceptions surrounding fusion-centric conditional models. Fusion is not equivalent to direct addition: ControlNet-style feature addition assumes spatial correspondence and is not a general solution for non-aligned conditions [2603.27666]. Fusion is not necessarily gating: slice-wise latent conditioning in GCDTC is conditioning rather than gate-based selection [2502.12951]. Image-space proxy objectives are not reliable substitutes for trajectory-aware guidance: CLIP spherical loss can be nearly orthogonal to the true diffusion guide [2210.12192]. Nor is more fusion always better: increasing the number of approximate MPC steps can accumulate error and worsen divergence, larger guidance weights can amplify small guide differences, multi-condition control can produce conflicts such as slight subject distortion under subject-plus-depth constraints, and excessive soft-mask blur improves realism at the expense of lesion localization [2210.12192; 2603.27666; 2507.19201].

Within this literature, the most defensible interpretation of “fusion surface models” is therefore methodological rather than taxonomic. The term would denote models whose behavior is determined by the interface surface between condition and denoising state: whether that interface is a concatenated latent tensor, a token sequence, a gated modulation path, a future-state gradient, or a slice-wise latent code. The surveyed papers show that this interface governs controllability, convergence, parameter overhead, privacy-oriented deployment, lesion fidelity, and even distortion guarantees, making fusion not an auxiliary detail but a primary design axis of modern conditional diffusion systems.

Source: https://www.emergentmind.com/topics/fusion-surface-models