Papers
Topics
Authors
Recent
Search
2000 character limit reached

User-Aware Conditional Generative Total Correlation Learning for Multi-Modal Recommendation

Published 3 Apr 2026 in cs.IR and cs.AI | (2604.03014v1)

Abstract: Multi-modal recommendation (MMR) enriches item representations by introducing item content, e.g., visual and textual descriptions, to improve upon interaction-only recommenders. The success of MMR hinges on aligning these content modalities with user preferences derived from interaction data, yet dominant practices based on disentangling modality-invariant preference-driving signals from modality-specific preference-irrelevant noises are flawed. First, they assume a one-size-fits-all relevance of item content to user preferences for all users, which contradicts the user-conditional fact of preferences. Second, they optimize pairwise contrastive losses separately toward cross-modal alignment, systematically ignoring higher-order dependencies inherent when multiple content modalities jointly influence user choices. In this paper, we introduce GTC, a conditional Generative Total Correlation learning framework. We employ an interaction-guided diffusion model to perform user-aware content feature filtering, preserving only personalized features relevant to each individual user. Furthermore, to capture complete cross-modal dependencies, we optimize a tractable lower bound of the total correlation of item representations across all modalities. Experiments on standard MMR benchmarks show GTC consistently outperforms state-of-the-art, with gains of up to 28.30% in NDCG@5. Ablation studies validate both conditional preference-driven feature filtering and total correlation optimization, confirming the ability of GTC to model user-conditional relationships in MMR tasks. The code is available at: https://github.com/jingdu-cs/GTC.

Summary

  • The paper presents GTC, which uses interaction-guided diffusion for user-aware content denoising to overcome the universal relevance assumption.
  • It introduces a variational lower bound of total correlation to align visual, textual, and interaction modalities holistically, significantly improving recommendation metrics.
  • Evaluation on Amazon datasets shows that combining denoising with total correlation objectives outperforms state-of-the-art methods in multi-modal recommendation.

User-Aware Conditional Generative Total Correlation Learning for Multi-Modal Recommendation

Introduction and Motivation

Multi-modal recommendation (MMR) leverages heterogeneous contentโ€”primarily visual and textual item attributesโ€”to supplement sparse user-item interaction data and thereby enrich item representations. The critical challenge in MMR is effective cross-modal alignment: integrating modality-specific features with implicit user preference signals from interactions. Prior art, dominated by disentangled representation learning (DRL), assumes universal preference relevance for item content and separately aligns modalities via pairwise contrastive losses. This paradigm has two significant deficiencies: (1) Universal Relevance Assumption: Previous DRL methods erroneously model feature relevance as invariant across users, ignoring user-conditional preference structures. (2) Pairwise Alignment Limitation: They optimize only pairwise contrastive objectives, neglecting the higher-order dependencies inherent in multi-modal interactions. Figure 1

Figure 1

Figure 1: User-item interaction representations are poorly aligned with visual and textual content modalities, as indicated by low cosine similarity and high Euclidean distance; the latter two modalities are substantially more coherent.

Figure 2

Figure 2: The preference-driving features in item content are user-conditional: "orange" and "cotton" may be critical cues for one user, while "brand" and "style" are salient for another.

Proposed Framework: GTC

To address these core limitations, the paper introduces GTC (Generative Total Correlation), a framework that explicitly models user-aware content feature filtering and holistic, higher-order cross-modal alignment.

User-Aware Content Feature Generation

GTCโ€™s first component leverages a diffusion model conditioned on user interaction embeddings to perform preference-driven content denoising for each user, mitigating the universal relevance assumption and preserving only features correlated with the individualโ€™s observed behavior. Visual and textual item featuresโ€”pre-encoded via ResNet-50 and sentence-transformersโ€”are refined through interaction-guided diffusion, producing user-conditional denoised representations.

Holistic Cross-Modal Alignment via Total Correlation

Recognizing the incompleteness of pairwise alignment, GTC directly optimizes a variational lower bound of the total correlation (TC) among interaction, visual, and textual modalities. By adopting a multi-modal InfoNCE loss, GTC encourages not only pairwise but also higher-order mutual information, reflecting the full dependency structure of modalities. Symmetrization ensures that all anchor-modal perspectives are covered.

Fused Representation and Recommendation

The denoised, aligned content features are fused with interaction-derived embeddings using similarity-based gating and residual connections. A standard BPR loss is adopted for learning-to-rank, combined with content denoising and total correlation terms. Figure 3

Figure 3: The GTC architecture: multi-modal LightGCN encoding, interaction-guided diffusion, holistic TC alignment, and gating-based fusion prior to recommendation scoring.

Experimental Evaluation

Datasets and Baselines

GTC is evaluated on Amazon Sports, Baby, and Cell datasets, each with differing interaction sparsity. It is benchmarked against state-of-the-art fusion-based and disentanglement-based MMR algorithms.

Quantitative Results

GTC achieves substantial improvements over all baselines, with +28.3% NDCG@5 observed in the Sports datasetโ€”accentuating the cost of neglecting higher-order modal dependencies.

Key empirical findings:

  • Simple fusion of modalities is fragile to noise and inconsistency, underperforming methods that apply denoising or alignment.
  • Pairwise contrastive objectives, while effective, plateau in performance due to their inability to capture triadic or higher-order dependencies.
  • GTCโ€™s combination of user-aware denoising and total correlation-driven alignment consistently delivers superior results. Figure 4

Figure 4

Figure 4

Figure 4: Inclusion of visual/textual modalities and the use of TC-based alignment synergistically improve NDCG and recall compared to unimodal or pairwise approaches across datasets.

Ablation Analysis

Ablations demonstrate the necessity and complementarity of GTCโ€™s two main innovations:

  • Interaction-Guided Denoising sharply improves performance over GCN+concatenation or even DRL without denoising.
  • Total Correlation Objective (vs. pairwise contrastive loss) provides a further consistent gain, highlighting the impact of higher-order dependency modeling.

Cross-Modal Balance and Consistency

During training, GTC progressively enhances modality balance scores, indicating more coherent, equally weighted integration of all modalities. Figure 5

Figure 5: GTC closes the inter-modal representation gap during training, as measured by consistently increasing modality balance scores.

User preference consistency, measured by dot products of user and modality embeddings, increases steadily and more equitably for all modalities under GTC compared to DRAGON and MGCN, whose modality contributions remain imbalanced. Figure 6

Figure 6

Figure 6

Figure 6

Figure 6

Figure 6

Figure 6

Figure 6

Figure 6

Figure 6: GTC yields balanced and steadily increasing alignment of user embeddings with all three modality-specific item representations, unlike baselines where interaction signals dominate.

Hyperparameter and Sensitivity Analysis

Performance is sensitive to the diffusion noise schedule and the relative weighting of denoising and TC objectives. Moderate noise injection and balanced objective weights yield optimal results, with dataset-specific tuning required. Figure 7

Figure 7

Figure 7

Figure 7: GTC hyperparameter sweeps reveal the effect of noise steps and loss weighting across datasets; optimal values vary by domain.

Implications and Future Directions

By formalizing user-conditional preference denoising, GTC dissolves the restrictive assumption of universal content feature relevance. Its holistic approach to cross-modal alignment, manifested through total correlation optimization, exposes and exploits latent dependency structures ignored in prevailing models. This enables coherent multi-modal item representations that more faithfully reflect personalized user preference.

Practically, GTC sets a new state-of-the-art for MMR, particularly in domains where user interests are highly heterogeneous or item content is noisy. Theoretically, it demonstrates the viability of generative modeling (via diffusion) and high-order information-theoretic objectives for advanced recommendation problems.

Future work may extend GTC to more complex user and interaction dynamics (e.g., sequential/temporal models), accommodate emerging modality types (e.g., audio, video), or further generalize the conditional generative alignment paradigm to address explainability and fairness in recommendation.

Conclusion

GTC redefines multi-modal recommendation by explicitly addressing neglected deficiencies in user awareness and cross-modal dependency modeling. By conditioning generative denoising on user preferences and maximizing total correlation across all modalities, this framework produces highly personalized and coherent item representations, outperforming existing methods by a substantial margin and advancing both the empirical capability and conceptual understanding of MMR systems.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

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

Open Problems

We found no open problems mentioned in this paper.

Collections

Sign up for free to add this paper to one or more collections.