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

← All models

kyutai_tts-0.75b-en-public

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: moshi pipeline_tag: text-to-speech tags:
  • audio

Model Card for Kyutai TTS (public data)

See also the pre-print research paper, the project page, the GitHub repository, and the evaluation pipeline.

This is a model for streaming text-to-speech (TTS). Unlike offline text-to-speech, where the model needs the entire text to produce the audio, our model starts to output audio as soon as the first few words from the text have been given as input. This model was trained on a mixed of public TTS datasets, allowing for a fair comparisons with other methods.

Model Details

The model architecture is a hierarchical Transformer that consumes tokenized text and generateds audio tokenized by Mimi, see the Moshi paper. The frame rate is 12.5 Hz and each audio frame is represented by 16 audio tokens. You cannot use less tokens at inference. The backbone model is 300M parameters, and the depth transformer is 450M parameters and uses partial weight sharing similar to Hibiki. The audio is shifted by 16 steps (1.28 sec.) with respect to the text, and the model uses an acoustic/semantic delay of 2.

Model Description

Kyutai TTS 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 Text-To-Speech.
  • Language(s) (NLP): English
  • License: Model weights are licensed under CC-BY 4.0
  • Repository: GitHub

Uses

Direct Use

This model is able to perform streaming text-to-speech generation. This model allows for voice cloning through prefixing, although when compared with our main model, it achieves a speaker similarity score of 74.9%, against 80.9% for our main model. This level of speaker similarity is in line with some of the existing baselines like CSM and it thus seems safe to open source it.

This model does not perform watermarking for two reasons:

  • watermarking can easily be deactivated for open source models,
  • our early experiments show that all watermark systems used by existing TTS are removed by simply encodeding and decoding the audio with Mimi.

How to Get Started with the Model

This model is provided primarily for the purpose of scientific comparisons on public benchmarks. In particular, please check our pipeline for running TTS model evaluations on a number of benchmarks: tts_longeval.

Here is an example, first install moshi, for instance with

pip install -U "git+https://[email protected]/kyutai-labs/moshi.git#egg=moshi&subdirectory=moshi
import torch
from moshi.models.loaders import CheckpointInfo
from moshi.models.tts import DEFAULT_DSM_TTS_VOICE_REPO, TTSModel

text = "Hey there! How are you? I had the craziest day today."
voice = "expresso/ex03-ex01_happy_001_channel1_334s.wav"

checkpoint_info = CheckpointInfo.from_hf_repo('kyutai/tts-0.75b-en-public')
tts_model = TTSModel.from_checkpoint_info(
    checkpoint_info, n_q=16, temp=0.6, cfg_coef=3, device=torch.device("cuda")
)
entries = tts_model.prepare_script([text], padding_between=1)
# `voice` could also be a local wav file.
voice_path = tts_model.get_voice_path(voice)
prefix = tts_model.get_prefix(voice_path)

print("Generating audio...")
pcms = []
def _on_frame(frame):
    print("Step", len(pcms), end="\r")
    if (frame[:, 1:] != -1).all():
        pcm = tts_model.mimi.decode(frame[:, 1:, :]).cpu()
        pcms.append(pcm.clip(-1, 1))

# You could also generate multiple audios at once by extending the following lists.
all_entries = [entries]
prefixes = [prefix]
with tts_model.mimi.streaming(len(all_entries)):
    result = tts_model.generate(all_entries, [], on_frame=_on_frame, prefixes=prefixes)

print("Done generating.")
audios = torch.cat(pcms, dim=-1)

for audio, prefix in zip(audios, prefixes):
    # We need to skip the audio prefix.
    skip = int((tts_model.mimi.sample_rate * prefix.shape[-1]) / tts_model.mimi.frame_rate)
    audio = audio[..., skip:]
    # Now do something with this audio!

Model Card Authors

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

License & Citation

License is CC-BY 4.0. For citations please use the following.

@techreport{kyutai2025streaming,
      title={Streaming Sequence-to-Sequence Learning with Delayed Streams Modeling}, 
      author={Neil Zeghidour and Eugene Kharitonov and Manu Orsini and Václav Volhejn and Gabriel de Marmiesse and Edouard Grave and Patrick Pérez and Laurent Mazaré and Alexandre Défossez},
      year={2025},
      eprint={2509.08753},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2509.08753}, 
}

Magnet link

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

magnet:?xt=urn:btih:b166affa5be30a7f7cb1c8f61aa4c0546de5f952&dn=kyutai_tts-0.75b-en-public

Open magnet in torrent client · infohash b166affa5be30a7f7cb1c8f61aa4c0546de5f952

Files & hashes

PathSizesha1sha256
README.md5.2 KB (5,356 B)5b46c386fd5e81edd9e7679868db5e80a8ff9805b33705743310163790aa017e626eaa1a27b42daef65d0316b170bafba9131e42
config.json1.5 KB (1,549 B)4c22d6682d77215de37139c3efbf934bdbcad061e223561b96b7310626c9164518541918d8315a03f7db0dfdab274260d720aa24
[email protected]1.45 GB (1,560,040,168 B)e80e80b5af93b95aea9748a5683a2f9cca99738eee4342f0fd9bd244a1d540993beadaf02dcb8116b376fa91b28f4b2568f3f571
tokenizer-e351c8d8-checkpoint125.safetensors366.8 MB (384,644,900 B)612e137da20d8bbe47e4520227788a63d92a537509b782f0629851a271227fb9d36db65c041790365f11bbe5d3d59369cf863f50
tokenizer_spm_8k_en_fr_audio.model117.6 KB (120,378 B)4bbf5c0bb21d195dc88afe273dd25f0be0079da5cd87dd5d17169151782ac700280ec057e5d658a9afbe238a048ea5ff318cce69

Cite this release

Canonical URL
https://aiseedbank.org/models/kyutai_tts-0.75b-en-public/
Slug
kyutai_tts-0.75b-en-public
Infohash
b166affa5be30a7f7cb1c8f61aa4c0546de5f952
License
cc-by-4.0
Signing key fingerprint
85a3b32c3712427b

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

Provenance

Upstream repositorykyutai/tts-0.75b-en-public
Revision (pinned)816a8498066d454249a08d10ed614bda5276be0e
Fetched at2026-09-02T12:15:47Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T12:16:07Z

cc-by-4.01.81 GB (1,944,812,351 bytes)moshittsaudiotext-to-speech1 language (en)paper: 2509.08753paper: 2410.00037paper: 2502.03382