F5-TTS English β€” ONNX export

A ready-to-use ONNX Runtime export of the base F5-TTS (F5TTS_v1_Base) checkpoint, packaged for Horus.F5Tts.Onnx β€” run F5-TTS text-to-speech from .NET with no Python. Exported at NFE 32 (the library default).

Files

  • F5_Preprocess.onnx, F5_Transformer.onnx, F5_Decode.onnx
  • vocab.txt

Usage (.NET)

using var model = F5TtsModel.Load(
    "F5_Preprocess.onnx", "F5_Transformer.onnx", "F5_Decode.onnx", "vocab.txt");

var (reference, _) = WavAudio.ReadPcm16("reference_en.wav"); // 24 kHz mono 16-bit PCM
var result = model.Synthesize(reference,
    referenceText: "The transcript of the reference clip.",
    text: "Hello, how are you today?");
File.WriteAllBytes("out.wav", result.ToWav());

English works with the library's default character-level tokenizer. See the library README for GPU providers and options.

Credits & license

Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support