Views
No views yet
model.onnx); download it separately (see below).| Repo | Purpose |
|---|---|
This repo (notmax123/blue-onnx) | ONNX checkpoints for BlueTTS inference |
notmax123/blue | PyTorch / Safetensors weights and stats for training, finetuning, and exporting new voice JSON |
notmax123/blue-onnx.1hf download notmax123/blue-onnx --repo-type model --local-dir ./onnx_models
2wget -O model.onnx https://huggingface.co/thewh1teagle/renikud/resolve/main/model.onnxhuggingface-cli download notmax123/blue-onnx --repo-type model --local-dir ./onnx_modelsuv sync, place the ONNX bundle and model.onnx as in the project README, then use src.blue_onnx.BlueTTS or the examples/ scripts.1import soundfile as sf
2from src.blue_onnx import BlueTTS
3
4tts = BlueTTS(
5 onnx_dir="onnx_models",
6 style_json="voices/female1.json",
7 renikud_path="model.onnx",
8)
9samples, sr = tts.synthesize("Hello, this is a short English sample from BlueTTS.", lang="en")
10sf.write("output.wav", samples, sr)PYTHONPATH / imports if you install the package instead of running from a clone.)| Hardware | Approx. speed | ~1 h audio |
|---|---|---|
| NVIDIA RTX 3090 (GPU) | very high RTF | on the order of seconds |
| Typical CPU | strong RTF | on the order of minutes |
| Apple M1 class | strong RTF | on the order of a few minutes |