AI SeedbankHelp preserve open and free AI for humanity's future

← All models

kyutai_stt-2.6b-en-trfs

kyutai · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: cc-by-4.0 language:

  • en library_name: transformers tags:
  • audio
  • automatic-speech-recognition

Model Card for Kyutai STT

This repo is meant to use the model with Transformers 🤗

Starting with transformers >= 4.53.0 and above, you can now run Kyutai STT natively!

pip install -U 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-trfs"

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

# 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-trfs"

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

# 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)

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.

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

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:7864721031b9e7a96575493aa3db61267c8be32e&dn=kyutai_stt-2.6b-en-trfs

Open magnet in torrent client · infohash 7864721031b9e7a96575493aa3db61267c8be32e

Files & hashes

PathSizesha1sha256
README.md5.7 KB (5,875 B)d9933a970112b960587d10a5e170309cfcaa15bc1781824ad71c6d7147f9134c1a9e61f29ec79520847af30300ccb51f13f63a4b
config.json1.9 KB (1,955 B)6ac149f2bf8ee130db61af5af947482afe7f9e0b4ed7357f2841a52898a5e968de3a151eea342e09f7cfc961348e5805585b9368
generation_config.json237 B (237 B)d950216dff83ff29a74279c0574466ce8ba1ccde9b9225836a0e56538acc9e780e9a47ac3262208f6914ba55723fb49761538b4b
model-00001-of-00002.safetensors4.07 GB (4,372,392,344 B)a262c45148e61f8cb70da219809805b8bb46c0f4d10da996924f8718e69ad188d65e4334f6c82a12bcaf8c5df83e80c9f5fca98b
model-00002-of-00002.safetensors1.44 GB (1,547,899,924 B)37c85b32b208f91e5c956a957ae6d23e306286c6fe01b3882f795cc9198c6e7f1fa4f08000e14f59ac8b181a294535ddb41cc33b
model.safetensors.index.json70.0 KB (71,651 B)7966833f3d21d204e037207753d08423b249f1b925c24636a4fbc6c68b66102be7970f555d97d6345292a8e8006cae9df18d4187
preprocessor_config.json366 B (366 B)9558f99779adc0cb4113da6e78d1c1b3d69f30cf78c6c2f5a210bc192e803bbdf4ba69739c2f15444f7435f90b29fac04c2129f2
special_tokens_map.json27 B (27 B)0d29076b142c433a70cc1fc7e63d6a15fe5b2a67c982c025453afc73c93ec1fab4598763bef21cfbf22cd6008d03711d4e6210e1
tokenizer.json239.3 KB (245,050 B)937f2807612efbbb7f6681d600a210111c72b3ca3bbd225e8e4042e0bff6c3ed162dfb7e58e4b5abe71f93266088c870f661c961
tokenizer_config.json1.1 KB (1,115 B)b261a91e4c5868bfb7c9fb0f959967b28ba7d40df344e82089600538e675015f5060223e9ed1242a3f66d109cc8a103d34c3e729

Cite this release

Canonical URL
https://aiseedbank.org/models/kyutai_stt-2.6b-en-trfs/
Slug
kyutai_stt-2.6b-en-trfs
Infohash
7864721031b9e7a96575493aa3db61267c8be32e
License
cc-by-4.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: kyutai_stt-2.6b-en-trfs.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorykyutai/stt-2.6b-en-trfs
Revision (pinned)005de8e7800698a4c9963a5ac000e185b410c2f5
Fetched at2026-09-02T05:17:42Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T05:18:39Z

cc-by-4.05.51 GB (5,920,618,544 bytes)transformerssafetensorskyutai_speech_to_textautomatic-speech-recognitionaudioendpoints_compatible1 language (en)paper: 2410.00037