---
title: Fused Multi-Modal Embeddings (PROFUSEme)
url: https://www.emergentmind.com/topics/fused-multi-modal-embeddings-profuseme
type: topic
---

# Fused Multi-Modal Embeddings (PROFUSEme)

Searching arXiv for the cited papers to ground the article.
Fused multi-modal embeddings are latent representations constructed from two or more data modalities so that downstream models can operate on a shared representation rather than on isolated unimodal streams. In the narrow, explicit sense, “PROFUSEme” names a prostate cancer survival model that fuses clinical, radiology, and pathology embeddings through an intermediate-fusion Transformer and a Cox proportional hazards head [2509.14051]. In a broader sense, the label “PROFUSEme” (*Editor’s term*) is a convenient abstraction for a family of methods that produce a single shared embedding, token set, or fused decision functional from heterogeneous modalities, even when the original papers use other names such as Progressive Fusion, SFusion, FuseLIP, or AGFF-Embed [2209.00302][2208.12776][2506.03096][2602.05729].

## 1. Terminology, scope, and definitional variants

The literature does not use a single canonical term for this object. The prostate-cancer system “PROFUSEme: PROstate Cancer Biochemical Recurrence Prediction via FUSEd Multi-modal Embeddings” uses the name explicitly for a fused patient-level embedding connected to survival analysis [2509.14051]. By contrast, “Progressive Fusion for Multimodal Integration” states that the paper refers to the method as Progressive Fusion, also abbreviated and variably spelled as Pro-Fusion or ProFusion, and that the name “PROFUSEme” does not appear there [2209.00302].

Across papers, the fused object itself takes several forms. In Progressive Fusion it is an iterative shared embedding $h^{(t)}$ updated through repeated fusion and backprojection into unimodal encoders [2209.00302]. In SFusion it is a shared feature map $f_s$ obtained from available modalities only, without synthesizing or zero-padding missing ones [2208.12776]. In the explicit PROFUSEme survival model it is a masked-mean-pooled Transformer output $z \in \mathbb{R}^{768}$ built from modality tokens for pathology, radiology, and clinical covariates [2509.14051]. FuseLIP instead emits a single transformer embedding at the `<eot>` position from a unified sequence of text and discrete image tokens [2506.03096]. AGFF-Embed is a useful counterexample because its core fusion is at the similarity level rather than at the embedding level: it aggregates multiple similarity terms with a smooth $\log\sum\exp$ operator rather than defining one primary fused vector [2602.05729].

A common misconception is that a fused multi-modal embedding must always be a single concatenated vector. The surveyed systems show otherwise. The fused object may be a vector, a token stack, a voxel- or pixel-aligned map, or a similarity functional, depending on the downstream objective and the locus of fusion in the architecture [2208.12776][2506.03096][2602.05729].

## 2. Fusion paradigms and representational regimes

The main design axis is where interaction occurs. Progressive Fusion formulates the classic early-versus-late tradeoff directly: early fusion can model complex cross-modal interactions but suffers from heterogeneous feature spaces, dimensional mismatch, and high sample complexity, whereas late fusion preserves modularity and pretraining compatibility but risks discarding information that becomes relevant only jointly across modalities [2209.00302]. Its central update,
$$
h^{(t)} = F([e_1^{(t)}, \ldots, e_K^{(t)}]), \qquad
e_k^{(t+1)} = E_k(x_k \oplus \phi_k(W_k h^{(t)})),
$$
defines a progressive regime in which the late fused representation is repeatedly projected back into earlier unimodal processing.

The explicit PROFUSEme survival model adopts intermediate fusion. Pathology, radiology, and clinical representations are first reduced to patient-level vectors $V_P$, $V_R$, and $V_C$, each modality vector is linearly projected to a $1 \times 768$ token, learnable positional encodings are added, and a compact 4-layer Transformer encoder performs self-attention across the three modality tokens before masked mean pooling yields the fused embedding $z$ [2509.14051]. This is neither pure early fusion nor classical late ensembling; it is a token-level cross-modal interaction layer inserted after modality-specific feature extraction but before prediction.

SFusion represents a different regime: N-to-One fusion under variable modality availability. Available modality feature maps are tokenized, passed through stacked self-attention layers to extract inter-modal correlations, and then aggregated with a modality-wise voxel-level softmax into a shared embedding
$$
f_s = \sum_{k \in K} f_k \odot m_k,
$$
where the softmax is defined only over the available set $K$ [2208.12776]. This construction makes the fused representation missingness-aware by design.

FuseLIP pushes fusion to the earliest possible token level. Images are discretized into 128 visual tokens, text tokens are appended in a single sequence, and one bidirectional transformer processes the joint vocabulary so that cross-modal interaction occurs at every layer of encoding rather than only after unimodal features have been formed [2506.03096]. By contrast, AGFF-Embed shows that hybrid perceptual matching can require simultaneous global and fine-grained comparisons, so it computes global-to-global, fine-to-global, global-to-fine, and fine-to-fine similarities and fuses them via
$$
s_{\text{final}} = \log\!\left(\exp(s_{g2g}) + \sum_i \exp(s_{f2g}^i) + \sum_i \exp(s_{g2f}^i) + \sum_i \exp(s_{f2f}^i)\right),
$$
a formulation chosen specifically to remain compatible with hard-negative amplification [2602.05729].

These formulations suggest that “fused multi-modal embedding” is best understood as a representational regime rather than a single architectural primitive. The decisive question is not merely whether modalities are combined, but whether the combination produces a shared object that downstream inference treats as primary.

## 3. Architectural mechanisms for constructing fused representations

Several recurrent mechanisms appear across the literature. Progressive Fusion uses backward projections from the fused state into each modality encoder, usually with residual addition or concatenation plus projection. The same modality encoders and fusion head are reused across iterations, parameter growth is limited, and the authors report that gains saturate at small refinement depth, typically $T=2$ [2209.00302]. This yields a message-passing interpretation in which cross-modal context reaches early layers before irreversible pooling.

SFusion decomposes fusion into a correlation extraction module and a modal attention module. The correlation extraction stage is a Transformer-style self-attention stack over tokens derived from the available modalities; the modal attention stage then computes voxel-level weights over modalities and produces the final shared representation from the original upstream features, preserving scale because the modality weights sum to $1$ at each voxel [2208.12776]. An important edge case is explicitly handled: when only one modality is present, $m_k=1$ and the fused output reduces to that modality’s features.

Other architectures emphasize structurally asymmetric interaction. “Learning Deep Multimodal Feature Representation with Asymmetric Multi-layer Fusion” uses a shared single network with modality-specific batch normalization in the encoder and introduces parameter-free, bidirectional fusion operations—channel shuffle and pixel shift—at multiple layers [2108.05009]. Channel shuffle exchanges channel segments between modalities; pixel shift adds spatially shifted features from the opposite modality. The paper argues that symmetric fusion blocks are “not very compatible with the bidirectional fusion scheme,” and the asymmetric operations are introduced specifically to avoid redundant representations [2108.05009].

Refiner-style systems act not by changing the fusion operator itself but by constraining the latent fusion space. Refiner Fusion Network attaches per-modality decoders to the fused latent and penalizes the cosine discrepancy between each reconstructed modality surrogate and the original modality feature, enforcing what the paper calls a modality-centric responsibility condition [2104.03435]. A plausible implication is that such a constraint is especially relevant when the fused representation is expected to support both multimodal reasoning and unimodal fallback.

At larger scale, omni-modal retrieval systems use parameter-space rather than token-space fusion. Conan-embedding-v3 trains modality specialists independently from a shared initialization, fuses shared backbone task vectors with fixed coefficients $\alpha_I=\alpha_V=\alpha_D=0.3$ and $\alpha_A=0.5$, copies audio-only modules directly, and then repairs the projector interface through Projector Recovery before balanced rehearsal [2606.09331]. Here the fused embedding space emerges after weight-space composition rather than from explicit token concatenation.

## 4. Objectives, supervision, and representation shaping

The objective function determines what information the fused representation is forced to preserve. In the explicit PROFUSEme model, the fused patient embedding is optimized through the Cox proportional hazards negative partial log-likelihood,
$$
\mathcal{L}(\beta) = - \sum_{i:\delta_i=1}\left(x_i^\top \beta - \log \sum_{j \in R_i}\exp(x_j^\top \beta)\right),
$$
with the linear risk head $r = w^\top z + b$ mapping the fused embedding to log-risk [2509.14051]. This makes the embedding survival-aware rather than merely discriminative.

Progressive Fusion is task-agnostic and uses the final fused state $h^{(T)}$ for either classification or regression. The paper gives standard cross-entropy for classification and $\ell_2$ regression loss for time-series forecasting, with task loss applied after unrolling the refinement steps [2209.00302]. SFusion is likewise trained end-to-end with downstream task losses, specifically cross-entropy for human activity recognition and Dice-based segmentation losses, while its internal self-attention and modal attention machinery remain entirely differentiable [2208.12776].

Contrastive learning dominates retrieval-oriented formulations. FuseLIP combines a SigLIP-style sigmoid contrastive objective over unimodal or multimodal pairs with masked multimodal modeling on the same masked input, weighted by $\alpha=0.25$ [2506.03096]. Conan-embedding-v3 uses CLIP-style InfoNCE with $L_2$-normalized embeddings and temperature $\tau=0.02$ across specialist training, projector recovery, and rehearsal [2606.09331]. AGFF-Embed uses contrastive training over its similarity-level fused score and augments it with Explicit Gradient Amplification, where hard negatives are reweighted according to
$$
h_i = \exp\!\left(\alpha \left[s_{\text{final}}(X_q,X_{t_i}) - s_{\text{final}}(X_q,X_{t^+})\right]\right),
$$
with $\alpha=20$ in the reported setting [2602.05729].

Self-supervision can make the fused space more data-efficient. ProFusion3D introduces self-supervised mask modeling across PV and BEV views with masked token reconstruction, denoising, and cross-modal attribute prediction, and shows improved label efficiency on nuScenes [2410.07475]. DeepEarth trains fused modality and Earth4D embeddings through masked reconstruction inside an autoencoding world model, although the paper does not enumerate a full loss decomposition beyond that high-level description [2603.07039]. These examples suggest that fused embeddings increasingly function as generative state variables rather than only as discriminative summary vectors.

## 5. Empirical domains and reported behavior

The explicit PROFUSEme application is biochemical recurrence prediction after radical prostatectomy. On internal 5-fold nested cross-validation, the intermediate-fusion model over clinical, pathology, and radiology modalities achieved a mean C-index of $0.861$ with $\sigma=0.112$, and it reported a C-index of $0.7103$ on the hold-out CHIMERA 2025 validation leaderboard [2509.14051]. The same study reports that the best late-fusion three-modality baseline reached $0.797 \pm 0.120$, while radiology alone underperformed but still contributed positively when fused [2509.14051].

Progressive Fusion was evaluated on AV-MNIST, CMU-MOSI, CMU-MOSEI, and multimodal financial time series. Selected results include LFLSTM on HEALTH with MSE improving from $0.331$ to $0.315$ and robustness from $0.48$ to $0.78$, LF-Transformer on FB with MSE from $0.838$ to $0.788$ and robustness from $0.24$ to $0.38$, and overall reports of up to $\sim 5\%$ reduction in MSE and $\sim 40\%$ improvement in robustness over late-fusion baselines [2209.00302]. The paper also reports consistent sentiment gains, for example MIM on MOSI improving from $45.5$ to $46.3$ in Acc$_7$ and from $81.7$ to $83.4$ in Acc$_2$ [2209.00302].

SFusion was tested on SHL2019 human activity recognition and BraTS brain-tumor segmentation. On validation HAR, overall accuracy increased from $65.22\%$ with EmbraceNet to $67.47\%$ with SFusion, while ablations showed major degradation when the correlation extraction module or the modal attention module was removed [2208.12776]. In BraTS2020, average Dice improved over GFF in WT from $82.13\%$ to $82.89\%$, in TC from $69.04\%$ to $71.86\%$, and in ET from $55.31\%$ to $57.32\%$ [2208.12776].

FuseLIP, which targets truly multimodal embeddings rather than post hoc fusion, reports strong gains on multimodal retrieval-style tasks. Under CC3M+MM training, FuseLIP-B reached $94.3$ on text-guided image transformation retrieval and $70.8$ on OI-Pos; under CC12M+MM training, FuseLIP-B reported $94.2$ on TGIT and $82.3$ on the MMEB grounding category [2506.03096]. Conan-embedding-v3 addresses an omni-modal retrieval setting spanning text, image, video, visual documents, and audio, reaching $74.96$ overall on MMEB-V2 and $55.61$ on MAEB after decouple–fuse–recover training with projector repair [2606.09331].

The breadth of these results matters. Fused embeddings are not confined to one modality pair or one task family: they appear in prognosis, sentiment analysis, time-series forecasting, segmentation, retrieval, recommendation, world modeling, and autonomous driving. This breadth suggests that the decisive abstraction is the shared representational object rather than any fixed backbone.

## 6. Limitations, misconceptions, and open directions

A first limitation is terminological. “PROFUSEme” is not a universal field-wide name; outside the prostate-cancer paper, several cited systems do not use the term explicitly, and at least one source states this directly [2209.00302][2509.14051]. Treating it as a universal method name obscures the fact that the literature contains multiple non-equivalent fusion formalisms.

A second limitation is computational. Progressive Fusion scales roughly linearly with refinement depth $T$, SFusion inherits the $O(B \cdot H \cdot T^2 \cdot d_h)$ burden of self-attention over modality tokens, and early-fusion token systems such as FuseLIP trade training efficiency for higher inference cost than score-fusion baselines because images must be tokenized and encoded in a single joint sequence [2209.00302][2208.12776][2506.03096]. ProFusion3D similarly adds cross-view mappings, multi-stage fusion blocks, and multiple decoders [2410.07475].

A third limitation is modality imbalance and interface fragility. SFusion can struggle when a noisy modality dominates attention weights; Progressive Fusion warns about over-conditioning by dominant modalities and recommends gating or smaller backprojections for such cases; Conan-embedding-v3 identifies Projector Drift as a specific failure mode in which a projector remains calibrated to a specialist backbone after backbone fusion, causing severe audio regression until projector-only recovery is performed [2208.12776][2209.00302][2606.09331]. These are not peripheral issues: they show that fused spaces can fail even when the unimodal components remain strong.

Another common misconception is that missing modalities are automatically solved by fusion. Some systems explicitly address missingness—SFusion by constructing tokens only for available modalities, and the explicit PROFUSEme survival model by mask-aware mean pooling over present modality tokens—but many architectures require additional training strategies such as modality dropout, gated scaling, or sparse backprojection to remain stable under absent inputs [2208.12776][2509.14051][2209.00302].

Open directions recur across the papers. Conan-embedding-v3 proposes adaptive fusion coefficients, modality-aware routing, and projector-specific calibration after fusion [2606.09331]. Progressive Fusion points to sparse or hierarchical backprojections for many-modality settings [2209.00302]. AGFF-Embed identifies extension of hard-negative amplification toward perceptual-pattern weights as a future step once global versus fine-grained decomposition stabilizes [2602.05729]. DeepEarth suggests that fused multi-modal embeddings can be organized around precise spatio-temporal positional encoders rather than around modality identity alone, a direction that becomes increasingly relevant for world models and geo-temporal forecasting [2603.07039].

Taken together, the literature supports a broad but technically precise view: fused multi-modal embeddings are shared representational objects designed to preserve complementary modality information while enabling unified downstream inference. In the explicit PROFUSEme formulation this object is a Transformer-pooled patient embedding optimized with Cox partial likelihood [2509.14051]. In the broader research landscape, it may be iteratively refined, missingness-aware, token-level early fused, projector-recovered after weight-space merging, or even defined at the similarity level. The unifying principle is not one architecture, but the systematic conversion of heterogeneous modality-specific signals into a shared computational state that downstream models can treat as primary.

Source: https://www.emergentmind.com/topics/fused-multi-modal-embeddings-profuseme