Papers
Topics
Authors
Recent
Search
2000 character limit reached

RecGOAT: Multimodal Recommendation Framework

Updated 5 February 2026
  • RecGOAT is a multimodal recommendation framework that integrates LLM/LVM semantic features with ID-based collaborative filtering using graph neural networks.
  • It employs instance-level contrastive learning alongside distribution-level optimal adaptive transport to ensure semantic consistency and comprehensive signal fusion.
  • Empirical results on benchmark datasets and industrial deployments confirm its scalability and enhanced recommendation accuracy.

RecGOAT is a multimodal recommendation framework designed to address the intrinsic misalignment between large language/vision model (LLM/LVM) embeddings and traditional collaborative filtering (CF) ID-based embeddings. By integrating high-order collaborative structure via graph neural networks and enforcing dual-granularity alignment through instance-level contrastive learning and distribution-level optimal adaptive transport, RecGOAT produces unified item and user representations exhibiting both semantic consistency and comprehensiveness. This enables large-scale, high-accuracy recommendations in settings where item/user modalities and CF signals are traditionally hard to fuse (Li et al., 31 Jan 2026).

1. Motivation and Problem Formulation

Modern multimodal recommender systems increasingly incorporate LLMs/LVMs to capture world-aware semantics from text and images. However, standard CF pipelines depend on highly sparse ID-based embeddings learned solely from user–item interactions. Simple fusion strategies—concatenation or summation—between LLM-based and ID-based embeddings are fundamentally flawed; the representation spaces are semantically heterogeneous, often resulting in degraded performance and incompatibility. This core representational divergence underlies RecGOAT’s methodology: it does not merely combine signal sources, but explicitly models and aligns their distinct semantic properties (Li et al., 31 Jan 2026).

2. Intra-Modal Graph Attention Architecture

RecGOAT constructs and refines modality-specific and ID-specific item and user graphs via attentive message passing:

  • Item–Item Graphs: For both text (tt) and visual (vv) modalities, each item ii is embedded as xim=fm(miθm)\mathbf{x}_i^m = f_m(m_i \mid \theta_m). These representations anchor KK-NN graphs Gm=(I,Em,{xim})\mathcal G^m=(\mathcal I, \mathcal E^m, \{\mathbf x_i^m\}), with edges weighted by cosine similarity sijm=ximxjmximxjms_{ij}^m = \frac{\mathbf x_i^m \cdot \mathbf x_j^m}{\|\mathbf x_i^m\|\, \|\mathbf x_j^m\|}. Graph attention networks (GATs) with HH heads propagate information, generating higher-order features zim\mathbf z_i^m.
  • User–Item Graph (LightGCN): A bipartite graph Gui\mathcal G_{ui} links users (U\mathcal U) and items (I\mathcal I). ID-based embeddings Eu(0)\mathbf E_u^{(0)}, Ei(0)\mathbf E_i^{(0)} are iteratively updated via normalized neighborhood aggregation per LightGCN, resulting in ziid\mathbf z_i^{\rm id} and zuid\mathbf z_u^{\rm id}.
  • User–User Graph: Each user history is summarized into text, encoded with the text encoder, and used to form a KK-NN similarity graph among users. GAT is again used to propagate semantically enriched features zut\mathbf z_u^t.

This architecture enables high-order collaborative and multimodal reasoning over both observed interactions and LLM-extracted semantics.

3. Dual-Granularity Semantic Alignment

RecGOAT introduces two complementary alignment schemes:

  • Instance-Level Cross-Modal Contrastive Learning (CMCL): Each item is viewed as a triple (ziid,zit,ziv)(\mathbf z_i^{\rm id}, \mathbf z_i^t, \mathbf z_i^v). For anchor–positive modality pairs, the InfoNCE loss encourages embeddings for the same item to be close, while repelling embeddings corresponding to different items:

Li(ma,mp)=logexp(sim(zima,zimp)/τ)jBexp(sim(zima,zjmp)/τ)\mathcal L_i^{(m_a,m_p)} = -\log \frac{\exp(\mathrm{sim}(\mathbf z_i^{m_a}, \mathbf z_i^{m_p})/\tau)} {\sum_{j \in \mathcal B} \exp(\mathrm{sim}(\mathbf z_i^{m_a}, \mathbf z_j^{m_p})/\tau)}

summed over all triplet pairs and averaged to form LCMCL\mathcal L_{\rm CMCL}.

  • Distribution-Level Optimal Adaptive Transport (OAT): For each modality mm, OAT computes the entropic optimal transport plan between modality embedding distribution PmP^m and the ID embedding distribution QidQ^{\rm id}, using a ground cost matrix of mean L1L_1 distances. The Sinkhorn–Knopp algorithm computes a transport base plan T0mT_0^m, which is refined by a learnable residual T~m\widetilde T^m. Fused item embeddings are generated as

Z=γtZ^t+γvZ^v+(1γtγv)Zid\mathbf Z = \gamma_t\,\widehat{\mathbf Z}^t + \gamma_v\,\widehat{\mathbf Z}^v + (1 - \gamma_t - \gamma_v)\,\mathbf Z^{\rm id}

where weights γt,γv\gamma_t, \gamma_v are user-tuned.

The dual alignment strategy ensures both semantic consistency (instance-level) and coverage (distribution-level) in the final representation.

4. Theoretical Guarantees

RecGOAT offers formal semantic alignment guarantees under Lipschitz continuity of the user embedding norm and the ground-truth preference function:

  • Instance-Level Distance Bound:

Eizimzi2τLCMCL+2τlogB\mathbb E_i\|\mathbf z_i^m-\mathbf z_i\| \leq \sqrt{2\tau\,\mathcal L_{\rm CMCL} + 2\tau\log B}

  • Modality-to-Unified Error Bound:

ϵm(f)ϵF(f)(K+L)W1(Pm,Qid)+(K+L)Eizimzi|\epsilon_m(f) - \epsilon_F(f)| \leq (K+L^*)\,\mathcal W_1(P^m, Q^{\rm id}) + (K+L^*)\,\mathbb E_i\|\mathbf z_i^m-\mathbf z_i\|

  • Comprehensiveness and Alignment Consistency: By minimizing LCMCL\mathcal L_{\rm CMCL} and the Wasserstein-1 distances W1(Pm,Qid)\mathcal W_1(P^m, Q^{\rm id}), the unified embedding distribution both approximates and outperforms each single modality, formalizing the intuition of “fusion comprehensiveness.”

These results provide non-asymptotic guarantees for downstream recommendation performance, conditional on minimizing the alignment objectives.

5. Empirical Validation

Experiments on three Amazon public benchmarks (Baby, Sports, Electronics) establish state-of-the-art performance in Recall@10 and NDCG@10. For the Electronics dataset:

  • RecGOAT achieves Recall@10 = 0.0468 (vs. 0.0419 for IRLLRec, +8.84% relative improvement)
  • RecGOAT achieves NDCG@10 = 0.0271 (vs. 0.0248, +6.69%)

Ablation studies demonstrate:

  • Naïve LM–ID concatenation or summation can underperform strong ID-only LightGCN baselines, highlighting semantic conflicts.
  • CMCL alone restores most of the performance gap; OAT alone is even stronger.
  • Full dual alignment (CMCL + OAT) yields maximal gains.
  • The fused embedding exhibits “alignment consistency” (performance stability over weight selection) and always outperforms each single modality after alignment (“fusion comprehensiveness”).

6. Scalability and Industrial Deployment

RecGOAT has been deployed at scale in a major online advertising platform, with significant improvements observed in A/B testing for key metrics (e.g., click-through and conversion rates). The Sinkhorn-based OT step is efficiently implemented, confirming practical scalability for industrial recommender systems. Detailed business metrics are not public, but industrial integration attests to RecGOAT’s operational viability (Li et al., 31 Jan 2026).

7. Significance and Broader Impact

RecGOAT bridges the semantic gap between LLM/LVM and CF ID signals in recommender systems, without requiring end-to-end retraining or modality-specific architectures. Its dual-level alignment advances the field of multimodal recommendation by providing theoretically grounded, empirically validated methods that outperform prior approaches. The methodology generalizes to any domain where discrete ID semantics and world-aware representations must be jointly leveraged, and its deployment demonstrates its applicability in high-throughput, production environments.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to RecGOAT.