TTS
Collection
TTS models supported by Loom.cpp • 5 items • Updated
Supertone's Supertonic 2 on-device TTS model, exported for loom.cpp.
This is a loom.cpp export: a single self-describing GGUF that carries its own graph topologies, tokenizer (if any) and driver script, produced by loom-exporter.
Exported from Supertone/supertonic-2. Weights are unmodified; this repo packages the same parameters into
loom.cpp's GGUF format.
OpenRAIL-M -- inherited from the base model above.
en, ko, es, pt, fr
Run it with loom-py -- loom-py-rt on PyPI:
pip install loom-py-rt[hub]
import loom
model = loom.Model.from_pretrained("loom-ai-org/supertonic-tts-2-loom")
# supertonic-2 takes phoneme ids, not text -- see model.driver_source for the exact driver inputs.
audio = model.infer(tokens=[16, 40, 22, 30, 12, 3], n_steps=4, seed=1234)
model.driver_source prints the exact driver script this GGUF embeds, including a header comment
documenting every argument model.infer()/model.generate() accepts for this model.
supertonic-2.gguf -- the model, exported with loom-exporter.We're not able to determine the quantization variants.
Base model
Supertone/supertonic-2