Instructions to use kyutai/tts-1.6b-en_fr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Moshi
How to use kyutai/tts-1.6b-en_fr with Moshi:
# pip install moshi # Run the interactive web server python -m moshi.server --hf-repo "kyutai/tts-1.6b-en_fr" # Then open https://localhost:8998 in your browser
# pip install moshi import torch from moshi.models import loaders # Load checkpoint info from HuggingFace checkpoint = loaders.CheckpointInfo.from_hf_repo("kyutai/tts-1.6b-en_fr") # Load the Mimi audio codec mimi = checkpoint.get_mimi(device="cuda") mimi.set_num_codebooks(8) # Encode audio (24kHz, mono) wav = torch.randn(1, 1, 24000 * 10) # [batch, channels, samples] with torch.no_grad(): codes = mimi.encode(wav.cuda()) decoded = mimi.decode(codes) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,13 +10,12 @@ tags:
|
|
| 10 |
---
|
| 11 |
# Model Card for Kyutai TTS
|
| 12 |
|
| 13 |
-
See also the [
|
|
|
|
| 14 |
the [Colab example](https://colab.research.google.com/github/kyutai-labs/delayed-streams-modeling/blob/main/tts_pytorch.ipynb),
|
| 15 |
the [GitHub repository](https://github.com/kyutai-labs/delayed-streams-modeling/),
|
| 16 |
and the [repository of voices](https://huggingface.co/kyutai/tts-voices).
|
| 17 |
|
| 18 |
-
Pre-print research paper is coming soon!
|
| 19 |
-
|
| 20 |
This is a model for streaming text-to-speech (TTS).
|
| 21 |
Unlike offline text-to-speech, where the model needs the entire text to produce the audio,
|
| 22 |
our model starts to output audio as soon as the first few words from the text have been given as input.
|
|
|
|
| 10 |
---
|
| 11 |
# Model Card for Kyutai TTS
|
| 12 |
|
| 13 |
+
See also the [pre-print research paper](https://arxiv.org/abs/2509.08753),
|
| 14 |
+
the [project page](https://kyutai.org/next/tts),
|
| 15 |
the [Colab example](https://colab.research.google.com/github/kyutai-labs/delayed-streams-modeling/blob/main/tts_pytorch.ipynb),
|
| 16 |
the [GitHub repository](https://github.com/kyutai-labs/delayed-streams-modeling/),
|
| 17 |
and the [repository of voices](https://huggingface.co/kyutai/tts-voices).
|
| 18 |
|
|
|
|
|
|
|
| 19 |
This is a model for streaming text-to-speech (TTS).
|
| 20 |
Unlike offline text-to-speech, where the model needs the entire text to produce the audio,
|
| 21 |
our model starts to output audio as soon as the first few words from the text have been given as input.
|