HyperAIHyperAI

Command Palette

Search for a command to run...

Le triangle d'attention dans les modèles audio-vidéo

Sagi Polaczek Noa Kraicer Gal Metzer Zhuo Ning Ali Mahdavi-Amiri Daniel Cohen-Or Raja Giryes

Résumé

Les modèles de diffusion audio-vidéo s'appuient sur l'attention inter-modale pour coordonner le texte, le son et le contenu visuel, mais ce même mécanisme peut introduire des fuites sémantiques subtiles et systématiques. Nous étudions ces modèles en sondant et en analysant le « triangle d'attention », composé des trois arêtes d'attention croisée reliant les flux texte, audio et vidéo, et examinons comment l'information sémantique est acheminée entre les modalités pendant la génération. Notre analyse révèle que l'acheminement le long de l'arête audio-vidéo est bidirectionnel : l'audio peut influencer la génération vidéo, tandis que la vidéo peut influencer la génération audio. Cette arête est façonnée par des biais encodés dans les paramètres du modèle et apparaît comme un contributeur majeur aux fuites : lorsque les invites sont en tension avec les a priori appris, les interactions inter-modales peuvent outrepasser le conditionnement prévu et réacheminer la sémantique vers des résultats visuellement canoniques mais incorrects. Ces effets suggèrent que les artefacts sémantiques ne proviennent pas simplement d'une attention qui s'étend au-delà de sa cible prévue, mais d'interactions structurées, guidées par des biais, le long de voies spécifiques. En nous appuyant sur cette perspective, nous extrayons des signaux dérivés de l'attention qui exposent comment la sémantique est distribuée et ancrée à travers les modalités, et les utilisons comme outil de diagnostic pour à la fois analyser et provoquer délibérément des fuites dans des conditions contrôlées. Cela nous permet de sonder la dynamique interne de l'acheminement inter-modal et d'isoler le rôle des interactions individuelles. Nous exploitons en outre ces signaux pour guider des interventions au moment de l'inférence qui favorisent un alignement inter-modal plus cohérent. Des expériences approfondies soutiennent notre analyse et démontrent un ancrage sémantique amélioré tout en préservant la qualité de génération.

One-sentence Summary

Researchers from Tel Aviv University and Simon Fraser University analyze the “attention triangle” in audio-video diffusion models, revealing that bidirectional audio-video cross-attention edges, shaped by parameter biases, cause semantic leakage when prompts conflict with learned priors, and they introduce attention-derived diagnostic signals to probe and deliberately incur leakage, guiding inference-time interventions that improve cross-modal alignment while preserving generation quality.

Key Contributions

  • Analyzes the “attention triangle” in audio-video diffusion models, showing that the audio-video cross-attention edge is bidirectional and bias-driven, making it a major source of semantic leakage when prompts conflict with learned priors.
  • Introduces attention-derived diagnostic signals that expose how semantics are distributed across modalities, enabling controlled leakage induction and isolation of individual cross-modal interactions in a pretrained generator.
  • Applies these signals to training-free inference-time interventions that improve cross-modal alignment, with experiments on LTX-2 demonstrating better semantic grounding while preserving generation quality.

Introduction

Diffusion models, particularly Diffusion Transformers (DiT), have made attention the core mechanism for conditional generation, using cross-attention to bind text, audio, and video modalities. However, attention mixes information globally and softly without explicit constraints, leading to attribute leakage and unstable semantic bindings. In trimodal audio-video generation, this problem compounds: the model must reconcile text intent, audio temporal structure, and video spatiotemporal realization, but competing signals and modality dominance often cause semantic associations to spread to unintended entities. Prior work on leakage in text-to-image models treats it as an attention-routing failure and applies inference-time interventions, yet audio-video models inherit and amplify this issue, especially along the audio-video pathway, where a 1D audio embedding attending to 3D video patches strips spatial distinctness and leaves sound-source grounding underconstrained.

The authors analyze this leakage through the structure of an "attention triangle" among text, audio, and video, focusing on source attribution failures. They identify the audio-video edge as a weak link, where learned cross-modal biases can override prompt-specified bindings and reroute sound semantics to visually canonical but incorrect sources. Building on this, they extract attention-derived signals as a diagnostic tool to probe and deliberately induce leakage, then use these signals to guide inference-time interventions. Their experiments show that steering individual triangle edges only partially resolves issues, such as fixing appearance without attribution or vice versa, while joint steering of all edges restores consistent sound-to-source grounding across diverse prompts.

Method

The authors introduce a training-free, inference-time steering algorithm designed to mitigate semantic leakage in joint text-to-video and text-to-audio generation models. They formalize the interaction between modalities as an "Attention Triangle," where text, audio, and video tokens are connected via pairwise cross-attention. This coupled system allows semantic information to route directly and indirectly, but often leads to attributes intended for one entity leaking to another, such as a parrot's speech being incorrectly attributed to a pirate. To resolve this, the method applies pre-softmax additive logit biases to all three cross-attention surfaces simultaneously.

Refer to the framework diagram:

The steering biases are constructed from three families of anchors derived from a single unsteered baseline pass:

  1. Text Anchors: The user annotates the intended sound source, the sound or action, and an optional competing source in the prompt. These phrases are mapped to specific token indices.
  2. Visual Anchors: Baseline frames are decoded and processed using a segmentation model prompted with the intended-source text to generate hard binary masks for the source and competing regions.
  3. Audio Anchors: Soft sound masks are derived by aggregating audio-query and text-key attention weights that target the sound phrase tokens across denoising steps, as no external audio segmenter is utilized.

The algorithm applies specific biases to the edges of the triangle to reground the streams:

Audio-Video Edge: The authors compute a soft agreement matrix GVA\mathbf{G}_{VA}GVA that assigns high values to intended source-sound pairs and non-source/non-sound pairs, while assigning low values to mismatched pairs. A bias is applied to suppress mismatched audio-video logits:

BAV=λ(1NV×NAGVA),BVA=BAV\mathbf{B}_{A \to V} = -\lambda(\mathbf{1}_{N_V \times N_A} - \mathbf{G}_{VA}), \quad \mathbf{B}_{V \to A} = \mathbf{B}_{A \to V}^\topBAV=λ(1NV×NAGVA),BVA=BAV

where λ>0\lambda > 0λ>0.

Text-Conditioned Edges: For the text-to-video and text-to-audio surfaces, the method defines "intended" and "conflicting" cell masks. For the video-query and text-key surface, the intended mask MVTint\mathbf{M}_{VT}^{\text{int}}MVTint pairs source video patches with source text tokens, while the conflicting mask MVTconf\mathbf{M}_{VT}^{\text{conf}}MVTconf pairs source patches with competing text and vice versa. The bias is formulated as:

BTV=βMVTintγMVTconf\mathbf{B}_{T \to V} = \beta \mathbf{M}_{VT}^{\text{int}} - \gamma \mathbf{M}_{VT}^{\text{conf}}BTV=βMVTintγMVTconf

A symmetric formulation is applied to the text-to-audio surface using audio masks. The authors use fixed hyperparameters across experiments, placing greater weight on suppressing conflicting associations than reinforcing intended ones.

As shown in the figure below:

This visualization demonstrates the necessity of the full joint steering. The baseline generation exhibits strong leakage where the pirate inherits the speaking role. Text steering restores the pirate's appearance but fails to localize speech correctly. Audio-video steering correctly localizes speech to the parrot but leaves appearance leakage. Only the full triangle steering jointly restores correct appearance and localizes the sound to the intended source, confirming that addressing all three edges is required to close the triangle and eliminate residual leakage.

Experiment

The evaluation validates the proposed steering framework through attention visualizations, qualitative comparisons, and human preference studies. First- and second-order attention analyses confirm that the method redirects audio-mediated attention from incorrect to intended sources, mitigating four recurring leakage modes in open-domain scenarios. Comparisons against the native baseline, a bounded-attention adaptation, and partial steering variants show that only the full intervention simultaneously preserves appearance and grounds sound correctly; ablations isolate the complementary roles of text and audio-video edge steering. Quantitative metrics and pairwise user studies consistently favor the full method on attribution, leakage, and overall quality, with all preference margins statistically significant.

The proposed full intervention achieves the highest sound-source attribution score and the best visual consistency and aesthetic quality among all methods, while remaining competitive on audio-text alignment. Partial variants show that steering the audio-video edge alone improves attribution but not as much as the full intervention, and the video-only baseline is not scored on attribution. The full intervention outperforms the native baseline and all other variants on sound-source attribution, with the largest gain over the bounded attention baseline. Steering only the audio-video edge yields a higher attribution score than steering only the text edges, but the full intervention combines both for the best result. The full intervention maintains or improves visual consistency and aesthetic quality relative to the native baseline, with negligible change in audio-text alignment.

The evaluation compares the full intervention against partial variants and baselines, showing that it achieves the highest sound-source attribution while preserving visual consistency and aesthetic quality, with only negligible impact on audio-text alignment. Steering the audio-video edge alone improves attribution more than steering text edges, but the full intervention, which combines both, yields the best result. The largest attribution gain is observed over the bounded attention baseline, and the video-only baseline is excluded from attribution scoring.


Créer de l'IA avec l'IA

De l'idée au lancement — accélérez votre développement IA avec le co-codage IA gratuit, un environnement prêt à l'emploi et le meilleur prix pour les GPU.

Codage assisté par IA
GPU prêts à l’emploi
Tarifs les plus avantageux

HyperAI Newsletters

Abonnez-vous à nos dernières mises à jour
Nous vous enverrons les dernières mises à jour de la semaine dans votre boîte de réception à neuf heures chaque lundi matin
Propulsé par MailChimp