Papers
Topics
Authors
Recent
Search
2000 character limit reached

TAViS: Audio-Visual Segmentation Framework

Updated 5 July 2026
  • TAViS is a cross-modal framework for Audio-Visual Segmentation that integrates text bridging to align audio, image, and text modalities for pixel-wise segmentation.
  • It couples ImageBind and SAM2 through ImageBind-guided Query Decomposition and hybrid prompting, enabling effective decomposition of audio queries into object-level representations.
  • Empirical results show TAViS achieves superior performance across single-source, multi-source, and zero-shot settings with precise, memory-consistent segmentation outcomes.

TAViS is a framework for Audio-Visual Segmentation (AVS) that addresses the cross-modal alignment problem by coupling a multimodal foundation model, ImageBind, with a segmentation foundation model, SAM2, through a text-bridged design (Luo et al., 13 Jun 2025). In this setting, AVS aims to generate pixel-wise segmentation maps of sounding objects in a scene, and the central difficulty is learning object-level correspondences between audio events and their visual counterparts under large intra-class diversity, including timbre, background context, and appearance variations. TAViS is defined by three core elements: ImageBind-guided Query Decomposition (IBQD), a text-bridged hybrid prompting mechanism, and text-bridged alignment supervision. The framework is reported to achieve superior performance on single-source, multi-source, semantic datasets, and to excel in zero-shot settings.

1. Problem setting and design rationale

Audio-Visual Segmentation seeks pixel-wise masks for sounding objects. The formulation emphasized in TAViS is not merely multimodal fusion, but cross-modal alignment at object level. The cited work identifies a fundamental limitation of prior AVS systems: many methods rely on single-modality knowledge, such as a visual foundation model like SAM or Semantic-SAM, or an audio model such as BEATs, while others combine models such as SAM and ImageBind in an off-the-shelf, decoupled manner. In both cases, the modality gap is left largely unresolved, and interaction between the multimodal and segmentation components is insufficient for effective knowledge transfer (Luo et al., 13 Jun 2025).

The proposed remedy is to couple ImageBind, which provides aligned audio, image, and text encoders, with SAM2, which provides precise region segmentation and temporal consistency. The difficulty is that SAM2 and ImageBind reside in different feature spaces, and supervision from segmentation loss alone is insufficient. TAViS therefore introduces text as a bridge between modalities and between model families.

This design suggests that the framework treats text less as a final prediction target than as a semantic anchor. In the reported formulation, text prototypes reduce intra-class noise by anchoring both audio and image to compact textual concepts, while preserving modality-specific information needed for localization and decoding.

2. System architecture

The architecture combines SAM2 and ImageBind in a coupled pipeline (Luo et al., 13 Jun 2025). SAM2 contributes an image encoder FEF_E, memory attention FMF_M, and mask decoder FDF_D. ImageBind contributes encoders EAE_A for audio, EIE_I for image, and ETE_T for text, each producing trunk features and a cls token.

The visual input is a frame sequence IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}, passed through SAM2’s image encoder FEF_E, augmented with audio-guided adapters, to yield multi-stage image features for FDF_D, with temporal memory in FMF_M when needed. The audio waveform FMF_M0 is encoded by FMF_M1 into an audio trunk feature FMF_M2 and an audio cls token FMF_M3. The text branch uses class labels formatted as "A [cls]", encoded by FMF_M4 to create text prototypes. Pseudo-text is synthesized from audio queries and is used both for prompting and for supervision.

The interface from ImageBind to SAM2 is prompt-based. The sparse prompt FMF_M5 combines pseudo-text embeddings and audio-specific embeddings. The dense prompt FMF_M6 is derived from ImageBind’s image cls token, tiled and added to every SAM2 image embedding location. The former injects class-prototype semantics plus instance-level audio detail; the latter injects global visual context aligned with ImageBind’s shared space.

Trainable and frozen components are explicitly separated. ImageBind encoders FMF_M7, FMF_M8, and FMF_M9 are frozen. The SAM2 image encoder is frozen, while memory attention FDF_D0 and mask decoder FDF_D1 are fine-tuned. IBQD, prompt MLPs, audio-guided adapters, and the necessary projection and gating modules for bridging are trained as part of the AVS model.

3. ImageBind-guided Query Decomposition

IBQD is introduced because SAM2 expects object-level queries, whereas input audio may contain multiple mixed sound sources (Luo et al., 13 Jun 2025). A naïve learnable decomposition would discard the aligned ImageBind space, so TAViS instead decomposes audio into object-level queries while preserving ImageBind’s alignment properties.

Given the audio trunk feature FDF_D2 and audio cls token FDF_D3, the method introduces learnable queries FDF_D4 and applies multi-head cross-attention twice. First, the learnable queries attend to the audio trunk:

FDF_D5

Second, object-specific biases are created through a linear layer, added to FDF_D6, and re-attended to the audio trunk:

FDF_D7

The output is a set of decomposed queries FDF_D8 aligned with individual sources. The reported interpretation is that IBQD preserves ImageBind-aligned audio space during object-level decomposition, thereby improving query quality for SAM2.

Ablation results attribute a substantial fraction of the framework’s performance to this component. At FDF_D9, removing IBQD reduces S4 performance to EAE_A0 and MS3 performance to EAE_A1, compared with full TAViS at EAE_A2 on S4 and EAE_A3 on MS3 (Luo et al., 13 Jun 2025).

4. Text-bridged prompting and alignment supervision

The text-bridged design has two parts: hybrid prompting and alignment supervision. Both use text as an intermediate semantic representation rather than direct audio-image matching (Luo et al., 13 Jun 2025).

For the sparse prompt, TAViS constructs pseudo-text embeddings EAE_A4 by encoding audio-derived tokens through EAE_A5, and constructs audio prompt embeddings EAE_A6 to preserve instance-specific details. These are merged into a single sparse prompt:

EAE_A7

where EAE_A8 denotes concatenation.

The audio-to-pseudo-text loss encourages audio-derived tokens to predict meaningful text features:

EAE_A9

For the dense prompt, the image cls token EIE_I0 is repeated and added to every pixel location in the SAM2 image embedding. The stated intuition is that sparse prompting stabilizes semantics by converting audio to pseudo-text, while dense prompting injects per-pixel context consistent with ImageBind’s shared space.

Alignment supervision then aligns audio-to-text and image-to-text separately. The reported rationale is that direct audio-image alignment is noisy due to intra-class variability and contextual diversity, whereas text provides concise, high-level prototypes. For audio-to-text classification,

EIE_I1

where EIE_I2 is obtained via Hungarian matching.

For image-to-text classification,

EIE_I3

The framework does not use InfoNCE. Instead, it uses cross-entropy over similarity matrices computed by matrix multiplication in the shared projected space. A direct audio-to-image term EIE_I4 was tested and found harmful due to noisy tokens; the final model uses only EIE_I5 and EIE_I6.

Ablations support this formulation. Removing text-bridged alignment supervision reduces S4 to EIE_I7 and MS3 to EIE_I8; removing text-bridged hybrid prompting reduces S4 to EIE_I9 and MS3 to ETE_T0. Within the alignment losses, the final configuration ETE_T1 outperforms alternatives including ETE_T2 (Luo et al., 13 Jun 2025).

5. Optimization, datasets, and empirical results

The segmentation objective combines an object-level loss ETE_T3 over ETE_T4 masks, using Binary Cross-Entropy and IoU losses, with a binary image-level loss ETE_T5 on a combined binary mask. The total loss is

ETE_T6

The training pipeline samples paired frames and audio from each video. For S4 and MS3, the protocol follows AVSBench conventions: S4 has 1 annotated frame per 5, and MS3 has 5 annotated frames per video. Optimization uses Adam with initial learning rate ETE_T7 and cosine decay. Batch sizes are 4 for MS3 and AVSS, and 10 for S4. Epoch counts are 80 for MS3 and S4, and 40 for AVSS. Input sizes are ETE_T8 or ETE_T9, with the paper explicitly noting that higher resolution yields better performance in SAM/SAM2 regimes (Luo et al., 13 Jun 2025).

The evaluation covers AVSBench-object and AVSBench-semantic. AVSBench-object includes S4, a single-source benchmark with 4,932 videos and 1 annotated frame per 5, and MS3, a multi-source benchmark with 424 videos and 5 annotated frames per video. AVSBench-semantic introduces V2 with 6,000 videos and 10 frames per audio clip, and adds class labels to S4 and MS3 to form V1S and V1M. Binary segmentation is measured by mean Jaccard IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}0 and mean F-score IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}1, while semantic AVS uses class-aware IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}2.

The main reported results for the ViT-L backbone are summarized below.

Setting Dataset Result
224×224 S4 IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}3 84.8, IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}4 0.912
224×224 MS3 IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}5 68.2, IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}6 0.759
224×224 AVSS IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}7 44.2
1024×1024 S4 IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}8 87.0, IRT×H×W×CI \in \mathbb{R}^{T\times H\times W\times C}9 0.926
1024×1024 MS3 FEF_E0 71.2, FEF_E1 0.796

At FEF_E2, the paper reports S4 FEF_E3 84.8 and FEF_E4 0.912, described as best FEF_E5 and second-best FEF_E6 versus COMBO’s 0.919; MS3 FEF_E7 68.2 and FEF_E8 0.759, reported as state of the art; and AVSS FEF_E9 44.2, also reported as state of the art among reported methods. At FDF_D0, performance rises to S4 FDF_D1 and MS3 FDF_D2.

The paper also gives a fair comparison with SAM-based systems. With SAM-H at FDF_D3, TAViS achieves S4 FDF_D4 and MS3 FDF_D5 at 334G MACs, compared with SAMA-AVS at FDF_D6 and 598G MACs achieving S4 FDF_D7 and MS3 FDF_D8. With SAM2-L at FDF_D9, TAViS achieves FMF_M0 and FMF_M1, surpassing SAMA-AVS at FMF_M2 and FMF_M3 (Luo et al., 13 Jun 2025).

6. Zero-shot behavior, interpretation, and limitations

TAViS is also evaluated in zero-shot and open-vocabulary settings. On AVSBench-OV, the framework reaches FMF_M4 with 54.9M trainable parameters, outperforming OV-AVSS, which reports 22.20 with 183.6M parameters (Luo et al., 13 Jun 2025). In this setting, classification is performed by similarity between text prototypes and both audio and image embeddings, combined by addition with coefficient 1.

The analysis in the source attributes the framework’s gains to three factors. First, the text bridge reduces intra-class noise by anchoring audio and image to compact textual prototypes; t-SNE is reported to show tighter clusters when the text bridge is used. Second, IBQD preserves ImageBind-aligned audio space during source decomposition. Third, the dense visual prompt FMF_M5 injects global context per pixel consistent with the shared space, sharpening mask boundaries.

Several limitations are stated explicitly. Direct audio-image alignment using FMF_M6 harms performance due to noisy tokens, which reinforces the importance of text as a bridge. Performance is strongly dependent on image resolution in SAM and SAM2 regimes; FMF_M7 substantially improves results, but at higher computational cost, and the authors report not running FMF_M8 on AVSS due to resource constraints. Finally, both ImageBind and the SAM2 image encoder are frozen, which stabilizes training but may limit task-specific adaptation.

The paper suggests several plausible extension directions. More robust pseudo-text generation or denoising strategies could mitigate token noise and perhaps enable safe audio-image alignment. Efficient high-resolution training or inference could retain the benefits of FMF_M9 at lower compute. Broader zero-shot capability might be obtained through richer text prompting or external lexical knowledge. These are presented as implications of the reported findings rather than established results.

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 TAVIS.