BEST-RQ-2.1-base

Recommended: BEST-RQ-2.2-base has the strongest reported X-ARES results in the BEST-RQ-2 family. For new projects, start with that model; see the comparison below.

BEST-RQ-2.1-base is a self-supervised audio encoder trained on AudioSet for a configured budget of 200,000 optimizer steps. It produces 768-dimensional clip and frame embeddings from mono 16 kHz waveforms, and supports downstream fine-tuning.

This repository contains the trained encoder, its preprocessing configuration, and the custom Transformers implementation. No installation of the research repository is needed.

X-ARES results

Scores on X-ARES (0–100, higher is better). Audio-JEPA, BEST-RQ (Conformer), BEST-RQ (ViT), and all BEST-RQ-2 variants reported below are trained on the same AudioSet split for 200,000 steps. The pretrained baselines are shown for comparison.

Model Speech Music Environment Global Mean Mean of Means Hugging Face model
data2vec 50.62 23.24 15.41 37.83 29.76 facebook/data2vec-audio-base
wav2vec 2.0 41.79 34.94 29.52 37.84 35.42 facebook/wav2vec2-large-100k-voxpopuli
Whisper 49.19 38.67 28.61 42.75 38.82 openai/whisper-base
Audio-JEPA 29.64 44.27 25.61 31.18 33.17 Audio-JEPA-base
BEST-RQ (Conformer) 40.43 35.58 30.81 37.43 35.60 Separate codebase
BEST-RQ (ViT) 32.87 41.62 34.50 34.88 36.33 BEST-RQ-ViT
BEST-RQ-2 (Interspeech 2026) 38.49 54.40 46.39 43.21 46.43 BEST-RQ-2
BEST-RQ-2.1 52.60 62.23 53.38 54.59 56.07 BEST-RQ-2.1-base
BEST-RQ-2.2 53.78 63.90 55.71 56.11 57.80 BEST-RQ-2.2-base

Global Mean averages all benchmark task scores. Mean of Means gives equal weight to the Speech, Music, and Environment category means.

Audio-JEPA scores were supplied by the author for run jp6l70l6. The remaining scores are reported in the project README. These are reported research results, not a new benchmark run of the Transformers exports.

The Audio-JEPA row refers to the newer 16 kHz, 200,000-step run, not the original ICME model (32 kHz, 100,000 steps). The author reports better results for this newer checkpoint.

Model and training

Property Value
Architecture 12-layer Transformer, 768 dimensions, 12 attention heads
Input frontend 128-bin mel spectrogram with a linear patch projection
Patch shape 128 mel bins by 4 time frames
Transformer Temporal RoPE, RMSNorm, SwiGLU, QK normalization
Training data AudioSet
Training objective Masked prediction of frozen codebook targets
Masking ratio 80%
Checkpoint step metadata Not recorded in this older safetensors file
Exported weight dtype float32
Extraction policy overlap50_two_phase

Load the model

Install the runtime dependencies in your Python environment:

pip install "torch>=2.9.1" "torchaudio>=2.9.1" "timm>=0.9" "einops>=0.7" "transformers>=4.57,<6"

Use matching PyTorch and torchaudio versions. GPU installations may require the appropriate PyTorch build for your CUDA version.

import torch
from transformers import AutoFeatureExtractor, AutoModel

model_name = "ltuncay/BEST-RQ-2.1-base"
processor = AutoFeatureExtractor.from_pretrained(model_name, trust_remote_code=True)
model = AutoModel.from_pretrained(model_name, trust_remote_code=True).eval()
audio = torch.zeros(processor.sampling_rate)  # Replace with real mono audio.
inputs = processor(audio, sampling_rate=processor.sampling_rate, return_tensors="pt")
with torch.inference_mode():
    outputs = model(**inputs)
clip_embeddings = outputs.pooler_output
frame_embeddings = outputs.last_hidden_state
output_dim = model.config.encoder_kwargs["embed_dim"]

Resample to processor.sampling_rate and downmix stereo before preprocessing. The extractor performs padding only; spectrogram/convolution features are computed inside the model. Pass the returned sample attention mask for variable durations. Outputs include a frame attention mask and timestamps in milliseconds (-1 for padding). pooler_output uses the saved HEAR extraction preset, including phase-balanced pooling. Frame features average frequency patches; they are not the raw frequency-time ViT grid.

Fine-tuning

For fine-tuning call model.train(), attach a task head and optimize its parameters alongside the model. Save with model.save_pretrained(path) and processor.save_pretrained(path). This encoder export excludes pretraining predictors, quantizers, teachers and optimizer state. Continue self-supervised research training with the original Lightning code and checkpoints.

Reproducibility and provenance

revision is optional; pin both loaders to the same full commit hash for reproducibility. Custom Python code is included in this repository and requires trust_remote_code=True. The weights use safetensors. See export_manifest.json for source and validation details. Source run: 67d94qaa (access may require permission). The export used checkpoints/last.safetensors and the matching saved Hydra configuration. W&B marks the run as finished and its summary reports trainer/global_step = 200000. The older safetensors file itself has no step metadata; the manifest keeps that field null and records the W&B evidence separately. The manifest also records the source SHA-256 hashes.

The exported model matched the pre-export encoder exactly on the exporter's variable-duration test batch. These are integration checks, not a downstream benchmark evaluation of this release.

Intended uses and limitations

Use these embeddings as features for audio research, classification, retrieval, or downstream fine-tuning. This is an encoder: it does not generate transcripts, audio, or class labels without a downstream model.

AudioSet training does not establish performance on every language, acoustic domain, demographic group, or downstream task. Evaluate the model on your target data. No new downstream benchmark scores are claimed for this export.

The feature extractor pads waveforms and checks the sample rate; it does not resample or downmix. Unequal-length clips are processed individually after padding is removed. The output embeddings follow the saved windowing policy rather than exposing the raw spectrogram token grid.

Browse the BEST-RQ-2 family collection.

Source and citation

Research code: audio-embeddings. BEST-RQ-2.1-base belongs to the BEST-RQ-2 family. Cite the family paper when using it:

@inproceedings{tuncay2026best,
  title={BEST-RQ-2: Contextualize-Then-Predict, a Two-Step Approach for Self-Supervised Audio Representations},
  author={Tuncay, Ludovic K and Labb{\'e}, Etienne and Pellegrini, Thomas},
  booktitle={Interspeech 2026},
  year={2026}
}

License

The model weights and bundled implementation are released under the MIT license. See LICENSE and CODE_LICENSE.

Downloads last month
-
Safetensors
Model size
85.5M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including ltuncay/BEST-RQ-2.1-base

Paper for ltuncay/BEST-RQ-2.1-base