Papers
Topics
Authors
Recent
Search
2000 character limit reached

HBMNet: Hierarchical Audio-Visual Localization

Updated 1 July 2026
  • HBMNet is a hierarchical boundary modeling network that uses multiscale, bidirectional cues from audio and visual streams to detect deepfake boundaries in partially manipulated videos.
  • It integrates an Audio-Visual Feature Encoder, Coarse Proposal Generator, and Fine-grained Probabilities Generator to fuse coarse proposals with fine-grained frame-level predictions for enhanced precision and recall.
  • Empirical results on challenging datasets show that HBMNet outperforms previous methods, highlighting its robust scalability, data efficiency, and advanced boundary-content modeling.

HBMNet is a hierarchical boundary modeling network introduced for audio-visual temporal deepfake localization under the scenario of content-driven partial manipulation, where manipulated (“deepfake”) regions typically span only a few frames while the majority of the video remains unaltered. The HBMNet framework leverages three integrated modules—an Audio-Visual Feature Encoder, a Coarse Proposal Generator, and a Fine-grained Probabilities Generator—to capture multiscale, bidirectional, and cross-modal cues for precise and robust boundary localization of deepfake regions. Its architecture induces complementary strengths from both modal (audio and visual) and temporal (multiscale, boundary-aware) perspectives and achieves superior performance on challenging temporally localized manipulation detection tasks (Chen et al., 4 Aug 2025).

1. Architecture and Module Design

1.1 Audio–Visual Feature Encoder (AVFE)

HBMNet’s AVFE first constructs bidirectional representations from audio and visual inputs. Each raw stream—audio XaX^a and video XvX^v—is duplicated as forward (X\overrightarrow{X}) and reversed (X\overleftarrow{X}) streams, enabling the model to acquire cues about both “real → fake” and “fake → real” transitions.

  • Audio Encoder: Converts mel-spectrograms with a SENet.
  • Video Encoder: Employs a 3D-CNN stem, ResNet-18, and Temporal Convolutional Networks (TCN).
  • Cross-modal Fusion: Three transformer-style blocks perform:

    1. Audio-to-visual (AV) cross-attention,
    2. Visual-to-audio (VA) cross-attention,
    3. Self-attention fusion (AttFUS).
  • Frame-wise Classification: A lightweight classifier provides per-frame “fake vs real” probabilities PfRTP^f\in \mathbb{R}^T.

  • Feature Concatenation and Frame-level Supervision: Concatenation of features and probabilities forms cross-modal features (Fcf\overrightarrow{F}^{cf}, Fcf\overleftarrow{F}^{cf}). Frame-level contrastive supervision maximizes the audio–visual feature overlap on genuine frames and separation on manipulated frames by means of a margin-based contrastive loss LFC\mathcal L_{\rm FC}.

1.2 Coarse Proposal Generator (CPG)

CPG implements a proposal-based boundary matching mechanism inspired by BMN. It receives forward stream features Fcf\overrightarrow{F}^{cf} and generates a dense grid of candidate proposals, each characterized by a start frame jj and duration XvX^v0:

  • Proposal Sampling and Confidence Estimation: For each proposal XvX^v1, a learnable sampling mask XvX^v2 extracts relevant feature snippets, and 3D-to-2D convolutions yield a proposal confidence map XvX^v3.
  • Supervision: CPG is trained using Mean Squared Error loss XvX^v4 against a “ground-truth” IoU-based map XvX^v5 representing the maximum overlap with any true manipulated segment.

1.3 Fine-grained Probabilities Generator (FPG)

FPG refines region boundaries:

  • Structure: A nested U-Net accepts both XvX^v6 and XvX^v7, extracting multiscale cues.
  • Outputs: For each direction, FPG predicts six sequences—start (XvX^v8), end (XvX^v9), and content (X\overrightarrow{X}0) probabilities.
  • Bidirectional Fusion: Forward and backward predictions are combined via elementwise geometric mean at inference.
  • Proposal Scoring: The final score for each proposal X\overrightarrow{X}1 is the product of CPG’s confidence, fused start and end probabilities, and mean content probability over the proposal.
  • Supervision: FPG loss X\overrightarrow{X}2 uses a Focal variant on anchor-based start, end, and content predictions in both directions.

2. Hierarchical and Bidirectional Boundary Modeling

HBMNet unifies proposal-level and frame-level localization by explicitly modeling hierarchical boundaries and leveraging bidirectional context:

  • Multi-scale Temporal Cues: The model integrates CPG’s global, coarse proposals and FPG’s fine, frame-level predictions. During both training and inference, aggregating these cues yields an effective trade-off between precision and recall.
  • Bidirectional Boundary–Content Relationships: By processing time-reversed and forward streams, HBMNet can independently capture “entering” and “exiting” manipulated regions. This enables the system to model transition signals that unidirectional frameworks cannot, as FPG directly predicts start/end/content likelihoods in both directions and fuses them at inference.

3. Objective Functions and Optimization

HBMNet is trained to optimize a combination of frame-level, proposal-level, and content classification objectives:

  • Total Loss:

X\overrightarrow{X}3

with X\overrightarrow{X}4.

  • Audio-Visual Alignment: X\overrightarrow{X}5 enforces discriminability by minimizing cross-modal feature distances on genuine frames and maximizing them on fakes.
  • Proposal-level Regression: X\overrightarrow{X}6 (MSE) drives the CPG to regress towards dense IoU targets.
  • Frame-level Localization: X\overrightarrow{X}7 uses Focal loss (with adjustments for sample imbalance and hardness) on start/end/content streams to sharpen boundary precision.

4. Evaluation Protocol and Empirical Results

Experiments are conducted on the AV-Deepfake-1M dataset (~2K subjects, 286K real videos, 860K manipulations, diverse in audio/video/both), using a computationally tractable subset (8,000 train, 1,000 val, 2,000 test). Evaluation metrics include Average Precision (AP) at IoU thresholds {0.5, 0.75, 0.95} and Average Recall (AR) at {50, 20, 10} proposals. Key results and ablation findings are summarized below.

Method [email protected] [email protected] [email protected] AR@50 AR@20 AR@10
BA-TFD 38.9 11.8 0.10 42.6 36.3 32.0
UMMAFormer 75.9 60.9 9.21 78.3 74.2 70.7
HBMNet 96.8 90.8 12.8 88.8 88.5 88.3

Ablation insights:

5. Insights, Limitations, and Directions for Advancement

Insights

  • Precision and Recall Boosting: Dedicated cross-attention fusion sharpens precision, while frame-level contrastive supervision improves recall.
  • Complementarity of Hierarchical and Bidirectional Modeling: Integrating proposal- and frame-level, as well as forward- and backward-streams, delivers additive and complementary performance gains.
  • Content-aware Boundaries: The explicit modeling of boundary-content relationships (start, end, and interior) mitigates misclassification on ambiguous or noisy transitions.

Limitations

  • The nested U-Net and BMN sampling in CPG/FPG can incur significant computational overhead, particularly for long-duration inputs.
  • Bidirectional encoding doubles computational requirements relative to unidirectional frameworks.
  • Experiments and design focus on English speech; transfer to non-English or more diverse AV contexts remains untested.

Future Directions

  • More efficient boundary-matching mechanisms or dynamical (e.g., adaptive) proposal sampling could enhance scalability.
  • Lightweight bidirectional architectures (e.g., single-pass bidirectional Transformers) may reduce processing costs.
  • Semi-supervised or self-supervised pretraining on large, unlabeled AV streams is identified as a route to further leverage unannotated data and improve generalizability.

6. Context and Significance

HBMNet’s unified architecture—melding robust audio-visual encoding, multi-scale hierarchical localization, and explicit bidirectional boundary-content modeling—demonstrates substantial advances in the localized detection of temporally sparse deepfake regions. Its design delivers complementary strengths in both precision and recall, and its scalability with larger datasets suggests practical utility in high-volume, diverse deployment scenarios. HBMNet outperforms prior methods, such as BA-TFD and UMMAFormer, by large margins across all principal evaluation metrics, advancing the state of the art in partial, content-driven temporal deepfake localization (Chen et al., 4 Aug 2025).

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