Papers
Topics
Authors
Recent
Search
2000 character limit reached

Audio-Visual Speech Separation via Bottleneck Iterative Network

Published 9 Jul 2025 in cs.SD, cs.MM, and eess.AS | (2507.07270v1)

Abstract: Integration of information from non-auditory cues can significantly improve the performance of speech-separation models. Often such models use deep modality-specific networks to obtain unimodal features, and risk being too costly or lightweight but lacking capacity. In this work, we present an iterative representation refinement approach called Bottleneck Iterative Network (BIN), a technique that repeatedly progresses through a lightweight fusion block, while bottlenecking fusion representations by fusion tokens. This helps improve the capacity of the model, while avoiding major increase in model size and balancing between the model performance and training cost. We test BIN on challenging noisy audio-visual speech separation tasks, and show that our approach consistently outperforms state-of-the-art benchmark models with respect to SI-SDRi on NTCD-TIMIT and LRS3+WHAM! datasets, while simultaneously achieving a reduction of more than 50% in training and GPU inference time across nearly all settings.

Summary

  • The paper introduces the Bottleneck Iterative Network, which iteratively refines unimodal and fused representations for high-quality audio-visual speech separation.
  • It demonstrates improved performance by matching or surpassing state-of-the-art SI-SDRi while reducing training time by up to 74% and GPU inference time by 80%.
  • Ablation studies confirm that bottlenecked fusion tokens and controlled cross-modal flow are essential for mitigating information loss in multimodal fusion.

Audio-Visual Speech Separation via Bottleneck Iterative Network

The paper "Audio-Visual Speech Separation via Bottleneck Iterative Network" (2507.07270) introduces a novel approach to audio-visual speech separation (AVSS) that addresses the limitations of both early and late fusion strategies in multimodal learning. The proposed Bottleneck Iterative Network (BIN) leverages iterative refinement and bottlenecked fusion tokens to achieve high separation quality while maintaining computational efficiency.

Problem Context and Motivation

Speech separation in noisy, multi-speaker environments remains a challenging problem, particularly when relying solely on audio signals. Incorporating visual cues, such as lip movements, has been shown to improve separation performance, especially under adverse acoustic conditions. However, existing AVSS models often face a trade-off between model expressiveness and computational cost. State-of-the-art models like RTFS-Net achieve high separation quality but are computationally intensive, while lightweight models such as AVLIT and IIA-Net sacrifice output quality for efficiency.

A key insight motivating this work is the "fuse-it or lose-it" problem: fixed fusion architectures risk losing task-relevant information if it is not integrated at the correct stage, and early fusion can introduce excessive nuisance from heterogeneous modalities. The BIN architecture is designed to flexibly and iteratively refine unimodal and fused representations, mitigating information loss and enabling conditional cross-modal information flow.

Bottleneck Iterative Network Architecture

The BIN model is structured around the following components:

  • Unimodal Embedding Networks: Audio and video inputs are processed by modality-specific encoders. The audio encoder is a 1D convolutional network, while the video encoder is a frozen convolutional autoencoder followed by a 1D convolution, with temporal alignment ensured by interpolation.
  • Fusion Block: The core of BIN is an iterative fusion block, repeated for RR iterations with shared parameters. At each iteration, the block:
    • Receives current unimodal embeddings and fusion tokens.
    • Updates the fusion tokens via a simple aggregation function (averaging).
    • Refines the unimodal representations using the updated fusion tokens as context, with residual connections to the original embeddings.
    • Restricts cross-modal information flow through narrow, learnable bottleneck tokens, ensuring only task-relevant information is exchanged.
  • Predictive and Decoding Modules: After RR iterations, a predictor network estimates separation masks, which are applied to the audio embedding and decoded to reconstruct the separated audio streams.

The iterative design allows downstream fused representations to inform and refine upstream unimodal features, effectively propagating cross-modal context throughout the network. The bottlenecked fusion mechanism is critical for computational efficiency and robustness, particularly when modalities contain significant nuisance information.

Pseudocode for BIN Iteration

1
2
3
4
5
6
7
8
9
10
for i in range(R):
    # Refine audio and video features with previous fusion token
    a_feat, c_A = G_A(a_feat_prev + E_A(audio), c_prev)
    v_feat, c_V = G_V(v_feat_prev + E_V(video), c_prev)
    # Update fusion token via bottlenecked aggregation
    c = 0.5 * (c_A + c_V)
    # Prepare for next iteration
    a_feat_prev, v_feat_prev, c_prev = a_feat, v_feat, c
mask = Predictor(a_feat, v_feat)
separated_audio = Decoder(E_A(audio) * mask)

Experimental Results

BIN was evaluated on two standard AVSS benchmarks: NTCD-TIMIT and LRS3+WHAM!. The primary metric was SI-SDRi, with PESQ and ESTOI as secondary metrics. Key findings include:

  • Performance: BIN with 12 or 16 iterations matches or surpasses RTFS-Net in SI-SDRi on both datasets, while significantly outperforming lightweight baselines (AVLIT, IIA-Net).
  • Efficiency: BIN achieves these results with up to 74% reduction in training time and 80% reduction in GPU inference time compared to RTFS-Net. The model maintains a modest parameter count and inference time, even as the number of iterations increases.
  • Ablation Studies: Removing the bottlenecked fusion tokens or disabling cross-modal information flow leads to substantial performance degradation, confirming the importance of both iterative refinement and bottlenecked fusion.

Representative Results (LRS3+WHAM!):

Model SI-SDRi Training Time (h) Inference Time (s)
RTFS-Net 12.14 193.45 0.16
BIN/12 Iter 12.25 50.58 0.04
AVLIT 11.62 28.09 0.02
IIA-Net 8.93 16.74 0.03

Analysis and Implications

The iterative design of BIN enables progressive refinement of separation masks, as evidenced by both qualitative mask visualizations and quantitative improvements across iterations. The bottlenecked fusion mechanism ensures that only salient cross-modal information is exchanged, preventing overfitting to nuisance features and maintaining computational tractability.

From a practical perspective, BIN is well-suited for deployment in real-time or resource-constrained environments, such as teleconferencing or hearing aids, where both separation quality and efficiency are critical. The architecture is modular and can be adapted to other multimodal fusion tasks beyond AVSS.

Theoretically, the work highlights the limitations of fixed fusion strategies and demonstrates the benefits of iterative, context-aware fusion with controlled information flow. The approach is compatible with a range of unimodal encoders and fusion functions, suggesting potential for further generalization.

Future Directions

Potential avenues for future research include:

  • Exploring more sophisticated fusion functions or adaptive bottleneck mechanisms to further improve the flexibility and performance-complexity trade-off.
  • Extending the iterative fusion paradigm to additional modalities (e.g., text, sensor data) or tasks (e.g., multimodal translation, event detection).
  • Investigating the integration of transformer-based encoders and attention mechanisms within the BIN framework.

Conclusion

The Bottleneck Iterative Network represents a significant advancement in efficient, high-quality audio-visual speech separation. By combining iterative refinement with bottlenecked fusion, the model achieves state-of-the-art separation performance with substantially reduced computational requirements. The architectural principles established in this work are broadly applicable to multimodal learning and offer a promising direction for future research in efficient, robust multimodal fusion.

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 haven't generated a list of open problems mentioned in this paper yet.

Continue Learning

We haven't generated follow-up questions for this paper yet.

Collections

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