FreyaTTS-small is a 183M-parameter Turkish text-to-speech model, and the open-source member of the FreyaTTS family. It is tokenizer-free at the character level (92 symbols, no phonemizer or G2P) and generates speech with a non-autoregressive conditional flow-matching DiT in the frozen AudioVAE2 latent space (25 Hz, 64-dim latents, 16 kHz encode / 48 kHz decode). Output is 48 kHz mono.
FreyaTTS-small (this model) is our compact, Apache-2.0, self-hostable model, released in full: weights, inference code, and training pipeline.
FreyaTTS-large is our production model, serving Turkish voice agents at Freya (YC S25) with higher naturalness and expressivity. It is available commercially rather than as open weights. For access, contact us at dev@freyavoice.ai.
The model id freyavoice/freya-tts predates this naming and is unchanged; it refers to FreyaTTS-small.
from freyatts import FreyaTTS
tts = FreyaTTS.from_pretrained("freyavoice/freya-tts", device="cuda")
wav = tts.synthesize("Merhaba, size nasıl yardımcı olabilirim?") # np.float32, 48 kHz
tts.save_wav(wav, "output.wav")
Clone freyavoiceai/FreyaTTS and install requirements.txt.
On Freya-TR-Eval: WER 8.0% / CER 3.0%, ranking 3rd of 7 among open sub-1B Turkish TTS models, ahead of XTTS-v2 (11.1% WER) and F5-TTS (24.3% WER).
FreyaTTS-small is described in our technical report, arXiv:2607.09530:
@misc{pamuk2026freyattscompacttokenizerfreeflowmatching,
title={FreyaTTS: A Compact Tokenizer-Free Flow-Matching Transformer for Turkish-First Speech Synthesis},
author={Ahmet Erdem Pamuk and Ömer Yentür and Ahmet Tunga Bayrak and Yavuz Alp Sencer Öztürk and Mustafa Yavuz},
year={2026},
eprint={2607.09530},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2607.09530},
}
6 commits
FreyaTTS-small is a 183M-parameter Turkish text-to-speech model, and the open-source member of the FreyaTTS family. It is tokenizer-free at the character level (92 symbols, no phonemizer or G2P) and generates speech with a non-autoregressive conditional flow-matching DiT in the frozen AudioVAE2 latent space (25 Hz, 64-dim latents, 16 kHz encode / 48 kHz decode). Output is 48 kHz mono.
FreyaTTS-small (this model) is our compact, Apache-2.0, self-hostable model, released in full: weights, inference code, and training pipeline.
FreyaTTS-large is our production model, serving Turkish voice agents at Freya (YC S25) with higher naturalness and expressivity. It is available commercially rather than as open weights. For access, contact us at dev@freyavoice.ai.
The model id freyavoice/freya-tts predates this naming and is unchanged; it refers to FreyaTTS-small.
from freyatts import FreyaTTS
tts = FreyaTTS.from_pretrained("freyavoice/freya-tts", device="cuda")
wav = tts.synthesize("Merhaba, size nasıl yardımcı olabilirim?") # np.float32, 48 kHz
tts.save_wav(wav, "output.wav")
Clone freyavoiceai/FreyaTTS and install requirements.txt.
On Freya-TR-Eval: WER 8.0% / CER 3.0%, ranking 3rd of 7 among open sub-1B Turkish TTS models, ahead of XTTS-v2 (11.1% WER) and F5-TTS (24.3% WER).
FreyaTTS-small is described in our technical report, arXiv:2607.09530:
@misc{pamuk2026freyattscompacttokenizerfreeflowmatching,
title={FreyaTTS: A Compact Tokenizer-Free Flow-Matching Transformer for Turkish-First Speech Synthesis},
author={Ahmet Erdem Pamuk and Ömer Yentür and Ahmet Tunga Bayrak and Yavuz Alp Sencer Öztürk and Mustafa Yavuz},
year={2026},
eprint={2607.09530},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2607.09530},
}
6 commits