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

← All models

kyutai_stt-1b-en_fr-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
  • fr 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_fr-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_fr-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:124b2a23ab4023aed729daec6a8a6b71802a82e5&dn=kyutai_stt-1b-en_fr-trfs

Open magnet in torrent client · infohash 124b2a23ab4023aed729daec6a8a6b71802a82e5

Files & hashes

PathSizesha1sha256
README.md5.7 KB (5,881 B)46d68fd59d98092f79eec2d99f3028c36fae44f0876e1cdb3534198e6a7eff87a30bb8707e0b3bcda7a2d5e9570fddaef910525f
config.json1.9 KB (1,956 B)6776ceadc93c121d4746994b6fa6d97d5de5156b57c99d8fc2d566cffe6573123b1d0692964f6ff32754da1cd7de1c72c569eb8b
generation_config.json237 B (237 B)d950216dff83ff29a74279c0574466ce8ba1ccde9b9225836a0e56538acc9e780e9a47ac3262208f6914ba55723fb49761538b4b
model.safetensors2.51 GB (2,697,201,444 B)af190a9f2744b294b660d40ed5a5ebde5430aaae59a6da960020ea4e1436118c63d7cd73f013e0c62466de12d7ad4b64454fd035
preprocessor_config.json366 B (366 B)bcb21ed74c600969c6de0dd7e0f1d3fe4fe3822f995081f5aaeae178ad82a8924f3519879cfd44a44a286c067f94ccf466d043f8
special_tokens_map.json27 B (27 B)0d29076b142c433a70cc1fc7e63d6a15fe5b2a67c982c025453afc73c93ec1fab4598763bef21cfbf22cd6008d03711d4e6210e1
tokenizer.json485.3 KB (496,919 B)88129e7d2d0a3d265d652e1515ef3ce7bf7f5666651954f97192a44bd664d5bc8942262d49a7eb59c066fd8d04eb43e0179bb2d3
tokenizer_config.json1.1 KB (1,115 B)b261a91e4c5868bfb7c9fb0f959967b28ba7d40df344e82089600538e675015f5060223e9ed1242a3f66d109cc8a103d34c3e729

Cite this release

Canonical URL
https://aiseedbank.org/models/kyutai_stt-1b-en_fr-trfs/
Slug
kyutai_stt-1b-en_fr-trfs
Infohash
124b2a23ab4023aed729daec6a8a6b71802a82e5
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-1b-en_fr-trfs.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorykyutai/stt-1b-en_fr-trfs
Revision (pinned)98aadd47649e7ccb89d1e73a6b62bcb31d38170f
Fetched at2026-09-02T05:17:12Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T05:17:42Z

cc-by-4.02.51 GB (2,697,707,945 bytes)transformerssafetensorskyutai_speech_to_textautomatic-speech-recognitionaudioendpoints_compatible2 languages (en, fr)paper: 2410.00037