arXiv preprint · 2026

Listening Forward: Next Patch Embedding Prediction Enables Scalable Audio Learners

A minimalist self-supervised objective for strong, scalable audio learners.

Umberto Cappellazzo1, Xubo Liu2, Stavros Petridis1, Maja Pantic1

1 Imperial College London · 2 University of Surrey

Abstract

We introduce NAPE (Next-Audio-Patch-Embedding prediction), a self-supervised framework for audio representation learning in which a causal Transformer predicts each next patch embedding of a log-mel spectrogram from the preceding ones, using causal masking and stop-gradient as its sole training signal. Unlike existing audio SSL methods that rely on reconstruction decoders, acoustic tokenizers, student-teacher setups, or auxiliary regularization losses, NAPE's design is deliberately minimalist. Across six audio and speech benchmarks, NAPE achieves state-of-the-art fine-tuning performance on several tasks, yields strong linear-probing results, and scales consistently across encoder sizes.

Method

Predicting the next patch, one step at a time

Given a log-mel spectrogram, NAPE splits it into non-overlapping patches and projects each into an embedding, producing a 2D grid. A scanning order linearizes the grid into a 1D sequence; a causal Transformer encoder processes it and a lightweight predictor head estimates the next patch embedding. Prediction quality is measured by negative cosine similarity to the target embedding under a stop-gradient, analogous to next-token prediction, but in a continuous embedding space.

NAPE framework overview: the spectrogram is split into patches and the model predicts each next patch embedding from the preceding ones under a causal mask
Figure 1. NAPE splits the spectrogram into patches and, at each step, predicts the embedding of the next patch using only the preceding ones; future positions are hidden by the causal attention mask.

Three ingredients, no heuristics

Three complementary mechanisms prevent NAPE from collapsing to trivial solutions, and together define its entire training regime.

01

Causality

A causal mask restricts each position to prior patches, blocking the trivial identity mapping.

02

Prediction shift

Position t predicts patch t+1, so causality can't be side-stepped by copying the current input.

03

Stop-gradient

The target is treated as constant, preventing the encoder from collapsing to a shared vector.

Scanning order matters for audio

Because causal prediction depends on which patches are "past," the order in which the 2D grid is linearized imposes a real inductive bias. We study four orders; those that advance in time, raster and diagonal, work best, matching how acoustic events unfold.

Raster Diagonal Zigzag Time-major
Four scanning orders that linearize the patch grid into a causal sequence: raster, diagonal, zigzag, and time-major
Figure 2. Four ways to linearize the patch grid into a causal sequence. Numbers indicate each patch's position in the sequence.

Results

Competitive with far more elaborate recipes

NAPE-B with diagonal scan matches or exceeds every self-supervised competitor of comparable size. Scaled up, NAPE-L ties the strongest baseline on AudioSet-2M and transfers especially well to speech.

50.2
AS-2M
mAP
40.5
AS-20K
mAP
97.9/98.8%
KS1/KS2
accuracy
68.0%
IEMOCAP
+3.5 vs best
Model#Par.AS-2MAS-20KESC-50KS1KS2ER
SS-AST (Huang et al., 2022)89M-31.088.896.098.059.6
MAE-AST (Baade et al., 2022)86M-30.690.095.897.959.8
CAV-MAE (Gong et al., 2023)86M44.934.2----
Audio-MAE (Huang et al., 2022)86M47.337.194.196.998.3-
Audio-MAE L (Huang et al., 2022)304M47.437.7----
data2vec (Baevski et al., 2022)94M-34.5----
MaskSpec (Chong et al., 2023)86M47.132.389.6-97.7-
BEATs (Chen et al., 2022)90M48.038.395.697.798.364.5
A-JEPA (Fei et al., 2023)86M48.638.496.397.798.5-
ASiT (Ahmed et al., 2024)86M48.038.695.398.298.9
EAT (Chen et al., 2024)88M48.640.295.998.3
SSLAM (Alex et al., 2025)88M50.240.996.298.898.1
SPEAR (Yang et al., 2026)327M50.240.996.298.898.1
NAPE-B diagonal85M49.739.294.897.998.667.1
NAPE-L raster303M50.240.596.097.998.868.0

Self-supervised methods pre-trained on AudioSet. Full comparison table in the paper.

Favorable scaling

NAPE improves on every benchmark as the encoder grows from Small (~19M) to Base (~85M) to Large (~303M) parameters, supporting next-patch-embedding prediction as a scalable objective.

Downstream performance across three encoder scales (Small, Base, Large) under raster and diagonal scan orders
Figure 3. Downstream performance across three encoder scales under raster and diagonal scan orders.

Linear probing

Discriminative features, mid-network

Even under a strict feature-freeze, NAPE's representations stay discriminative. The best probing layer sits around the middle of the encoder, the top layers specialize for the prediction objective, while mid-layers retain more general, classification-relevant information. Probing performance also scales positively with model size.

Layer-wise linear probing: AS-20K mAP versus relative encoder depth for each model scale
Figure 4. AS-20K mAP as a function of relative encoder depth, for each model scale.
Linear probing results across scales and tasks
Table 7. Linear probing results across scales and tasks.

Qualitative analysis

Structure without supervision

NAPE predicts next-patch embeddings with high cosine similarity on unseen audio. Its attention reasons jointly about the current spectral context and the frequency-consistent temporal history, and its predicted embeddings group acoustically-similar patches together, all without any explicit labels.

Prediction quality and attention / embedding-similarity maps for a pretrained NAPE-L model
Figure 5. Prediction quality (top) and attention/embedding-similarity maps (bottom) for a pretrained NAPE-L.

Citation

BibTeX

@article{nape2026,
  title   = {Listening Forward: Next Patch Embedding Prediction Enables Scalable Audio Learners},
  author  = {Umberto Cappellazzo, Xubo Liu, Stavros Petridis, Maja Pantic},
  journal = {arXiv preprint arXiv:XXXX.XXXXX},
  year    = {2026}
}