---
title: 'RADiAnce: Retrieval-Augmented Diffusion for Protein Binders'
url: https://www.emergentmind.com/topics/retrieval-augmented-diffusion-for-aligned-interface-radiance
type: topic
---

# RADiAnce: Retrieval-Augmented Diffusion for Protein Binders

Searching arXiv for the RADiAnce paper and closely related retrieval-augmented diffusion work.
Search query: arXiv 2510.10480 RADiAnce protein binders retrieval augmented diffusion
Retrieval-Augmented Diffusion for Aligned interface (RADiAnce) is a framework for protein binder design that leverages known interfaces to guide the generation of novel binders targeting specific sites [2510.10480]. It addresses the requirement that binder design recover not only plausible amino-acid sequences or stable backbones, but also realistic and functional interaction patterns at the interface, including hydrogen bonds, hydrophobic contacts, salt bridges, aromatic stacking, and correct residue orientation and packing [2510.10480]. The method unifies retrieval and generation in a shared contrastive latent space, retrieves relevant interface exemplars for a given binding site with simple dot-product similarity, and conditions a latent diffusion generator on those exemplars to enable cross-domain interface transfer across peptides, antibodies, and protein fragments [2510.10480].

## 1. Problem formulation and design rationale

RADiAnce is motivated by a limitation of structure-based generative models that generate binders only conditioned on the target binding site. In the formulation reported for RADiAnce, this weakens rationality, interpretability, and generalization because the model does not explicitly leverage known interface examples already present in databases [2510.10480]. The central premise is therefore knowledge-guided generation: retrieve similar known interfaces and use them as prompts for the generator.

A molecular complex is represented as a pair of graphs, with binder molecule \(x\) and binding site \(y\) [2510.10480]. The binding site is defined as residues within a **10 Å cutoff** of the binder, based on \(C_\beta\) atoms [2510.10480]. In this setting, the target conditional distribution is expressed as
\[
p_\theta(x \mid y, v),
\]
where \(v\) denotes retrieved interface exemplars [2510.10480].

The framework is explicitly designed for cross-domain interface transfer. The reported domains are peptides, antibodies, and protein fragments, and the paper argues that transferable interaction logic can persist across these binder modalities [2510.10480]. This suggests that RADiAnce treats interfaces as reusable structural and physicochemical motifs rather than as domain-isolated templates.

## 2. Shared contrastive latent space and interface retrieval

The defining architectural idea of RADiAnce is a shared contrastive latent space in which binding sites are encoded as keys and binder interfaces are encoded as values [2510.10480]. Retrieval and generation therefore operate in the same representation space rather than being loosely coupled post hoc stages.

The paper constructs a key-value database
\[
\mathcal D = \{(k_k, v_k)\mid k=1,2,3,\dots\},
\]
where \(k_k\) is a binding site graph embedding and \(v_k\) is the corresponding binder interface embedding [2510.10480]. At inference, for a query binding site \(y\), the model retrieves similar interface exemplars
\[
v = \{v_k \mid (k_k, v_k)\in \mathcal D,\; k_k \text{ similar to } y\},
\]
and generation proceeds under \(p_\theta(x \mid y, v)\) [2510.10480].

After training, the encoded database is written as
\[
\mathcal D^{kv} = \{(k_k,v_k)\},
\]
and a query site \(y\) is encoded into a query key \(k_y\) [2510.10480]. Similarity is computed by inner product,
\[
s_j = \langle k_y, k^{(j)}\rangle,
\]
followed by top-\(K\) retrieval,
\[
\mathcal I = \mathrm{TopK}(\{s_j\}),
\qquad
v = \{v^{(k)}: k\in\mathcal I\}.
\]
The paper also states that the ground-truth ligand of the query complex is excluded from retrieval to prevent trivial memorization [2510.10480]. This is important for distinguishing retrieval-guided generation from exemplar copying.

The retrieval mechanism is therefore not described as a generic nearest-neighbor heuristic. It depends on a latent space in which matching binding-site/interface pairs are explicitly aligned during training, so that retrieved values are intended to be semantically and structurally compatible with the query site [2510.10480].

## 3. Contrastive atomic VAE and retrieval-space learning

RADiAnce uses a contrastive atomic VAE to learn compressed latent representations for both binding sites and binder interfaces [2510.10480]. The encoder maps binder and binding site independently into latent point clouds,
\[
z_x = f_\phi(x),\qquad z_y = f_\phi(y),\qquad \hat x = g_\xi(z_x, z_y, y),
\]
with each latent variable containing a scalar embedding and a 3D coordinate embedding [2510.10480]. The decoder reconstructs the binder conditioned on both the binder latent and the site latent.

The reconstruction loss combines cross-entropy for block or residue type with MSE for time-dependent vector fields used in coordinate reconstruction:
\[
\mathcal L_{\text{rec}(i)} = \operatorname{CE}(p(\hat{s}_i), p(s_i)) + \mathbb E_{t\sim U(0,1)}\left[\operatorname{MSE}(\hat{\vec v}_i^t,\vec v_i^t)\right].
\]
The latent space is regularized by KL divergence on both scalar and coordinate latents:
\[
\mathcal L_{\text{KL}(i)} = \lambda_1 \cdot \mathrm{KL}\big((\mathbf{0}, I)\,\|\,(\mu_i,\operatorname{diag}(\sigma_i))\big) + \lambda_2 \cdot \mathrm{KL}\big((\vec c_i, I)\,\|\,(\vec\mu_i,\operatorname{diag}(\vec\sigma_i))\big),
\]
where \(\vec c_i\) is the center of mass of block \(i\) [2510.10480].

To align site and interface latents for retrieval, RADiAnce applies a double-sided contrastive loss:
\[
\mathcal{L}_{\text{retrieval}(p)} = -\log\frac{\exp(\langle k_p,v_p\rangle/\tau)}{\sum_{q=1}^{N}\exp(\langle k_p,v_q\rangle/\tau)} -\log\frac{\exp(\langle k_p,v_p\rangle/\tau)}{\sum_{q=1}^{N}\exp(\langle k_q,v_p\rangle/\tau)}.
\]
Here, \(\tau\) is the temperature, \(N\) is the batch size, and \(\langle \cdot,\cdot\rangle\) denotes Euclidean inner product [2510.10480]. The full training objective is
\[
\mathcal L = \sum_{p\in \mathcal D} \left( \sum_{i\in x_p}\mathcal L_{\text{rec}(i)} + \sum_{i\in x_p}\mathcal L_{\text{KL}(i)} + \mathcal L_{\text{retrieval}(p)} \right).
\]

The reported interpretation is that joint training of reconstruction, latent regularization, and retrieval alignment is crucial, and retrieval performance drops if the VAE loss is removed [2510.10480]. A plausible implication is that the retrieval space is not merely discriminative; it is also constrained to remain generatively meaningful.

## 4. Retrieval-conditioned latent diffusion and conditioning strategy

Generation in RADiAnce is performed by a retrieval-conditioned latent diffusion generator operating in the same latent space as the retrieval module [2510.10480]. For each latent block state \(\vec z_i^t\), the forward process adds Gaussian noise:
\[
q(\vec z_i^t \mid \vec z_i^{t-1}) = \mathcal N\left( \vec z_i^t;\; \sqrt{1-\beta^t}\,\vec z_i^{t-1},\; \beta^t \right),
\]
or equivalently,
\[
q(\vec z_i^t \mid \vec z_i^0) = \mathcal N\left( \vec z_i^t;\; \sqrt{\bar\alpha^t}\,\vec z_i^0,\; 1-\bar\alpha^t \right),
\qquad
\bar\alpha^t = \prod_{s=1}^{t}(1-\beta^s),
\]
so that
\[
\vec z_i^t = \sqrt{\bar\alpha^t}\,\vec z_i^0 + \sqrt{1-\bar\alpha^t}\,\epsilon_i,
\qquad
\epsilon_i\sim\mathcal N(0,I).
\]
The paper states that \(\beta^t\) follows a cosine noise schedule [2510.10480].

The reverse process learns
\[
p_\theta(\vec z_i^{t-1}\mid x^t_y, y, v) = \mathcal N\left(\vec z_i^{t-1};\, \mu_\theta(x^t_y,y,v),\, \beta^t\right),
\]
with noise-prediction parameterization
\[
\mu_\theta(\cdot) = \frac{1}{\sqrt{\alpha^t}} \left( \vec z_i^t - \frac{\beta^t}{\sqrt{1-\bar\alpha^t}} \epsilon_\theta(x^t_y,y,v,t)[i] \right),
\qquad
\alpha^t = 1-\beta^t.
\]
Training uses the denoising loss
\[
\mathcal L_{\text{LDM}} = \mathbb E_{t\sim U(1,\dots,T)} \left[ \frac{\sum_i \left\|\epsilon_i - \epsilon_\theta(x^t_y,y,v,t)[i]\right\|^2}{|x^t_y|} \right].
\]

Conditioning is implemented by an **E(3)-equivariant transformer** with cross-attention inserted between self-attention and feed-forward layers [2510.10480]. If \(H\in \mathbb R^{m\times h}\) are latent hidden states and \(P\in \mathbb R^{n\times h}\) are retrieved template embeddings, then
\[
Q = H W^Q,\qquad K = P W^K,\qquad V = P W^V,
\]
with learnable projections \(W^Q,W^K,W^V\in\mathbb R^{h\times h}\), and the residual cross-attention update is
\[
H' = \operatorname{LN}\left( H + \operatorname{Softmax}\left(\frac{QK^\top}{\sqrt h}\right)V \right).
\]
The paper also reports comparison with AdaLN-Zero and in-context fusion, with cross-attention performing best [2510.10480].

The inference workflow is modular: encode the binding site \(y\) into query key \(k_y\), compute dot-product similarity against all database keys, retrieve top-\(K\) binder latents, sample latent noise \(z_T\sim\mathcal N(0,I)\), iteratively denoise conditioned on \(y\) and \(v\), and decode the final latent \(z_0\) into binder structure \(\hat x\) [2510.10480]. Because the latent database can be replaced at inference, the paper presents this modularity as useful for different task domains [2510.10480].

## 5. Evaluation setup, benchmarks, and reported performance

RADiAnce is evaluated on peptide design, antibody design, and cross-domain reference data [2510.10480].

| Domain / reference set | Dataset | Size / source |
|---|---|---|
| Peptide design | PepBench | 4,157 training, 114 validation, 93 test cases from LNR |
| Antibody design | SAbDab | 9,473 training, 400 validation, 60 test cases from RAbD |
| Cross-domain references | ProtFrag | 70,498 monomer-derived protein fragments |

The retrieval database is restricted to training data to prevent leakage [2510.10480]. Retrieval is evaluated with RC-\(N\%\), specifically RC-0.1%, RC-0.5%, and RC-5%, and with Interaction Type Overlap (ITO), which compares the interaction-pattern distribution of retrieved exemplars with the ground truth based on interaction types such as hydrogen bonds and hydrophobic contacts [2510.10480]. The retrieval baseline is random retrieval. The summary reported in the paper is that the contrastive VAE substantially improves retrieval over random, antibody RC-5% reaches **100%**, peptide RC-5% reaches **67.74%**, and ITO improves strongly with cross-domain data, especially with ProtFrag included [2510.10480].

Generation is assessed with AAR, RMSD, \(\Delta\Delta G\), IMP, and ISM; the paper also reports DockQ, FoldX \(\Delta G\), Binding Site Recovery, and diversity [2510.10480]. For each test complex, **100 samples** are generated per model [2510.10480]. Reported baselines for peptides are RFDiffusion + ProteinMPNN + Rosetta, PepFlow, PepGLAD, and UniMoMo, while baselines for antibodies are MEAN, DyMEAN, DiffAb, GeoAB-R, GeoAB-D, and UniMoMo [2510.10480].

The main reported quantitative findings are domain-specific. In peptide codesign, RADiAnce is described as best or near-best across metrics, with **AAR 39.42**, **RMSD 2.29 Å**, **\(\Delta\Delta G\) 1.963 kJ/mol**, **IMP 41.94%**, and **ISM 52.15%** [2510.10480]. In antibody CDR design, the method is reported to achieve higher AAR, lower RMSD, more favorable \(\Delta\Delta G\), better IMP, and excellent ISM across CDRs, with example values **HCDR3: AAR 54.66, RMSD 0.9443 Å, \(\Delta\Delta G = -6.236\)** and **LCDR3: AAR 76.75, RMSD 0.4478 Å, \(\Delta\Delta G = -9.207\)** [2510.10480].

A recurrent conclusion in the reported experiments is that retrieval alone is insufficient. The ablation study states that a baseline without retrieval has lower performance, a baseline with retrieval but without alignment yields limited gains and can be worse on raw Vina score, and the full model combining alignment and retrieval produces the largest improvements across metrics [2510.10480]. Although the paper title and primary task concern protein binders rather than small molecules, the same methodological principle is echoed in retrieval-enhanced aligned diffusion for receptor-based ligand generation in READ [2506.14488].

## 6. Cross-domain transfer, interpretability, and limitations

A major contribution attributed to RADiAnce is the demonstration that interfaces from one domain can improve generation in another [2510.10480]. The experiments explicitly study retrieval from antibodies, peptides, and protein fragments and report that cross-domain retrieval improves interaction overlap, binding affinity, geometrical plausibility, and reconstruction of contact patterns relative to single-domain-only retrieval [2510.10480]. The paper’s explanation is that many binding motifs are shared across binder modalities, including hydrogen-bond networks, local packing, and shape complementarity [2510.10480]. This suggests that the latent space captures transferable interface logic rather than only scaffold-specific signatures.

The analysis of retrieval quantity and quality is also specific. The paper reports that more retrieved samples generally help up to a point, too many retrieved templates can add noise, random or reverse retrieval hurts performance, no retrieval is clearly worse than retrieval-based settings, and adaptive retrieval with a similarity threshold works better than fixed top-\(K\) in some cases [2510.10480]. These observations frame RADiAnce as a quality-sensitive retrieval-augmented generator rather than a monotonic “more exemplars is better” system.

Interpretability is illustrated through a case study on **GPIIb/IIIa binder design**, where retrieval-augmented generation reproduces key hydrogen-bond motifs involving arginine at the binding site and tyrosine in the binder [2510.10480]. Without retrieval, the model fails to reconstruct these interactions well; with retrieval, it inherits the critical motif and generates a more realistic interface [2510.10480]. The paper presents this as an interpretability advantage because generation can be related back to retrieved exemplars.

The stated limitations are centered on retrieval quality and benchmark construction. The paper notes that poor retrieval can inject noise, better structural descriptors may improve future systems, and more robust, structure-aware conditioning strategies are needed [2510.10480]. It also suggests stricter filtering in future benchmarks, including structural similarity constraints such as TM-score, to reduce leakage [2510.10480]. In practical terms, the method is presented as relevant to therapeutic antibodies, peptide inhibitors, protein-fragment binders, and de novo binder optimization, and the paper reports a de novo antibody design pipeline without a predefined bound scaffold that iterates design with AlphaFold3 and Rosetta [2510.10480].

Taken together, RADiAnce is characterized by a specific methodological synthesis: a contrastive latent space aligning binding sites and interfaces, retrieval of site-relevant interface exemplars, and latent diffusion conditioned on those exemplars [2510.10480]. The paper’s broader implication is that protein binder design benefits from retrieving transferable interface knowledge and generating with it, rather than relying exclusively on site-conditioned generation from scratch [2510.10480].

Source: https://www.emergentmind.com/topics/retrieval-augmented-diffusion-for-aligned-interface-radiance