Back Home

音訊模型

NAPE Predicts Only the Next Spectrogram Patch Embedding; 303M Audio Encoder Reaches 68.8% on IEMOCAP

An Imperial College London team simplifies self-supervised audio pretraining with a causal Transformer, stop-gradient, and cosine loss. The method scales consistently across six classification benchmarks, but has yet to demonstrate generalization to ASR, generation tasks, or non-AudioSet corpora.

WiNG · CC BY 3.0 · Image source
zh-Hant

An Imperial College London team has introduced NAPE (Next-Audio-Patch-Embedding prediction), bringing the next-step prediction concept from language models to spectrograms without building a discrete acoustic tokenizer or reconstructing raw audio. The [paper](https://arxiv.org/abs/2608.19863) first converts 16 kHz mono audio into a 128-band log-mel spectrogram. Each ten-second audio clip is divided into 504 16×16 patches, and a causal Transformer predicts the continuous embedding of the next patch from preceding patches.

The sole training objective is negative cosine similarity, with gradients stopped on the target branch and an additional asymmetric predictor head. Ablation results show that all three design choices are essential: removing the prediction shift causes the model to copy the current input, while removing stop-gradient makes the embeddings converge to a shared constant. Removing the causal mask does not cause numerical divergence, but it allows the model to peek at the target patch, reducing AudioSet-20K mAP by 14.3 points and ESC-50 accuracy by 25.4 points. As a result, NAPE requires no reconstruction decoder, EMA teacher, negative samples, or additional regularization.

The team pretrained 19M, 85M, and 303M encoders on unlabeled AudioSet data, using approximately 1.98 million unbalanced training clips and 21,000 balanced clips. The 303M model achieved 50.2 mAP on AudioSet-2M and 40.5 mAP on AudioSet-20K. For emotion recognition on IEMOCAP, the diagonal-scanning variant reached 68.8% accuracy, 4.3 points above the strongest prior result in the table. All three model sizes improved with scale across six downstream benchmarks, although the marginal gains from Base to Large have already begun to diminish.

This work merits attention from audio engineering teams because it reduces complex masked-reconstruction or teacher–student pretraining to a straightforward autoregressive representation-learning objective. The results listed on the [Hugging Face paper page](https://huggingface.co/papers/2608.19863) currently come only from the authors. Baseline scores were taken from the original papers and were not all rerun using the same code and compute; fine-tuning also retained a full augmentation stack including SpecAugment, Mixup, CutMix, and EMA. The study covers only event, keyword, and emotion classification, with no tests of end-to-end speech recognition, audio generation, cross-lingual transfer, or long-form audio. The key next questions are whether the authors will release the model weights and code, and whether the simplified pretraining objective can genuinely reduce total compute rather than merely reduce the number of architectural components.

Sources

  1. Listening Forward: Next Patch Embedding Prediction Enables Scalable Audio Learners
  2. Listening Forward — Paper page