kyutai / stt-2.6b-en

huggingface.co
Total runs: 0
24-hour runs: 0
7-day runs: 0
30-day runs: 0
Model's Last Updated: June 27 2025
automatic-speech-recognition

Introduction of stt-2.6b-en

Model Details of stt-2.6b-en

Model Card for Kyutai STT

See also the project page and the GitHub repository .

This is a model for streaming speech-to-text (STT, also known as automatic speech recognition, ASR). Unlike offline speech-to-text, where the model needs the entire audio to produce the transcript, our model starts to output the transcript as soon as a few seconds of audio become available.

Model Details

The model architecture is a Transformer that consumes audio tokenized by Mimi (see the Moshi paper ) and outputs text tokens. The frame rate is 12.5 Hz and each audio frame is represented by 32 audio tokens.

We release two models:

  • kyutai/stt-1b-en_fr , an English and French model with ~1B parameters, a 0.5 second delay, and a semantic VAD .
  • kyutai/stt-2.6b-en , an English-only model with ~2.6B parameters and a 2.5 second delay.
Model Description

Kyutai STT is a decoder-only model for streaming speech-to-text. It leverages the multistream architecture of Moshi to model text stream based on the speech stream. The text stream is shifted w.r.t. the audio stream to allow the model to predict text tokens based on the input audio.

  • Developed by: Kyutai
  • Model type: Streaming Speech-to-Text transcription.
  • Language(s) (NLP): English and French for kyutai/stt-1b-en_fr , English for kyutai/stt-2.6b-en
  • License: Model weights are licensed under CC-BY 4.0
  • Repository: GitHub
Uses
Direct Use

The model can be used for streaming speech-to-text. It is robust to noisy conditions and was found to perform well with audio as long as 2 hours with no additonal changes. The model produces transcripts with capitalization and punctuation. The predicted text token timestamps can be recovered by subtracting the model's text stream offset (0.5 or 2.5 seconds) from the frame's offset.

How to Get Started with the Model

See the GitHub repository .

Use with transformers

Install transformers from source:

pip install git+https://github.com/huggingface/transformers

Inference:

import torch
from datasets import load_dataset, Audio
from transformers import KyutaiSpeechToTextProcessor, KyutaiSpeechToTextForConditionalGeneration

# 1. load the model and the processor
torch_device = "cuda" if torch.cuda.is_available() else "cpu"
model_id = "kyutai/stt-2.6b-en"

processor = KyutaiSpeechToTextProcessor.from_pretrained(model_id)
model = KyutaiSpeechToTextForConditionalGeneration.from_pretrained(model_id, device_map=torch_device)

# 2. load audio samples
ds = load_dataset(
    "hf-internal-testing/librispeech_asr_dummy", "clean", split="validation"
)
ds = ds.cast_column("audio", Audio(sampling_rate=24000))

# 3. prepare the model inputs
inputs = processor(
    ds[0]["audio"]["array"],
)
inputs.to(torch_device)

# 4. infer the model
output_tokens = model.generate(**inputs)

# 5. decode the generated tokens
print(processor.batch_decode(output_tokens, skip_special_tokens=True))

Batched inference:

import torch
from datasets import load_dataset, Audio
from transformers import KyutaiSpeechToTextProcessor, KyutaiSpeechToTextForConditionalGeneration

# 1. load the model and the processor
torch_device = "cuda" if torch.cuda.is_available() else "cpu"
model_id = "kyutai/stt-2.6b-en"

processor = KyutaiSpeechToTextProcessor.from_pretrained(model_id)
model = KyutaiSpeechToTextForConditionalGeneration.from_pretrained(model_id, device_map=torch_device)

# 2. load audio samples
ds = load_dataset(
    "hf-internal-testing/librispeech_asr_dummy", "clean", split="validation"
)
ds = ds.cast_column("audio", Audio(sampling_rate=24000))

# 3. prepare the model inputs
audio_arrays = [ds[i]["audio"]["array"] for i in range(4)]
inputs = processor(audio_arrays, return_tensors="pt", padding=True)
inputs = inputs.to(torch_device)

# 4. infer the model
output_tokens = model.generate(**inputs)

# 5. decode the generated tokens
decoded_outputs = processor.batch_decode(output_tokens, skip_special_tokens=True)
for output in decoded_outputs:
    print(output)
Training Details
Training Data

Pretraining stage: For both kyutai/stt-2.6b-en and kyutai/stt-1b-en_fr , we use an audio collection of 2.5 million hours of publicly available audio content. For this dataset, we obtained synthetic transcripts by running whisper-timestamped .

For kyutai/stt-2.6b-en :

  • Finetuning stage: We then finetune the model on a collection of public datasets with ground-truth transcripts. This dataset contains 24000 hours of audio.

  • Long-form finetuning stage: Finally, we finetune the model on a combination of data from the previous stage and long-form audio. The long-form audio is obtained from two sources: (a) concatenating LibriSpeech examples (1000 hours), (b) synthesizing dialogs (22000 hours).

For kyutai/stt-1b-en_fr :

  • Finetuning stage: We finetune on the Fisher dataset of 2000 hours of English audio, plus proprietary data (1000 hours in English, 600 hours in French).
Compute Infrastructure

Pretraining and finetuning was done with 48 and 16 H100 Nvidia GPUs, respectively.

Model Card Authors

Neil Zeghidour, Eugene Kharitonov, Manu Orsini, Václav Volhejn, Gabriel de Marmiesse, Edouard Grave, Patrick Perez, Laurent Mazaré, Alexandre Défossez

Runs of kyutai stt-2.6b-en on huggingface.co

0
Total runs
0
24-hour runs
0
3-day runs
0
7-day runs
0
30-day runs

More Information About stt-2.6b-en huggingface.co Model

More stt-2.6b-en license Visit here:

https://choosealicense.com/licenses/cc-by-4.0

stt-2.6b-en huggingface.co

stt-2.6b-en huggingface.co is an AI model on huggingface.co that provides stt-2.6b-en's model effect (), which can be used instantly with this kyutai stt-2.6b-en model. huggingface.co supports a free trial of the stt-2.6b-en model, and also provides paid use of the stt-2.6b-en. Support call stt-2.6b-en model through api, including Node.js, Python, http.

stt-2.6b-en huggingface.co Url

https://huggingface.co/kyutai/stt-2.6b-en

kyutai stt-2.6b-en online free

stt-2.6b-en huggingface.co is an online trial and call api platform, which integrates stt-2.6b-en's modeling effects, including api services, and provides a free online trial of stt-2.6b-en, you can try stt-2.6b-en online for free by clicking the link below.

kyutai stt-2.6b-en online free url in huggingface.co:

https://huggingface.co/kyutai/stt-2.6b-en

stt-2.6b-en install

stt-2.6b-en is an open source model from GitHub that offers a free installation service, and any user can find stt-2.6b-en on GitHub to install. At the same time, huggingface.co provides the effect of stt-2.6b-en install, users can directly use stt-2.6b-en installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

stt-2.6b-en install url in huggingface.co:

https://huggingface.co/kyutai/stt-2.6b-en

Url of stt-2.6b-en

stt-2.6b-en huggingface.co Url

Provider of stt-2.6b-en huggingface.co

kyutai
ORGANIZATIONS

Other API from kyutai

huggingface.co

Total runs: 1.6M
Run Growth: 758.7K
Growth Rate: 48.20%
Updated:July 02 2025
huggingface.co

Total runs: 119.0K
Run Growth: 65.0K
Growth Rate: 54.62%
Updated:September 11 2025
huggingface.co

Total runs: 23.1K
Run Growth: 19.4K
Growth Rate: 83.97%
Updated:April 30 2025
huggingface.co

Total runs: 5.4K
Run Growth: -9.7K
Growth Rate: -179.97%
Updated:May 04 2026
huggingface.co

Total runs: 3.6K
Run Growth: 1.4K
Growth Rate: 38.07%
Updated:September 18 2024
huggingface.co

Total runs: 898
Run Growth: 666
Growth Rate: 74.16%
Updated:April 16 2026
huggingface.co

Total runs: 610
Run Growth: -465
Growth Rate: -76.23%
Updated:September 18 2024
huggingface.co

Total runs: 12
Run Growth: 5
Growth Rate: 41.67%
Updated:December 24 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:November 18 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:March 10 2026