Instructions to use Supertone/supertonic-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Supertonic
How to use Supertone/supertonic-2 with Supertonic:
from supertonic import TTS tts = TTS(auto_download=True) style = tts.get_voice_style(voice_name="M1") text = "The train delay was announced at 4:45 PM on Wed, Apr 3, 2024 due to track maintenance." wav, duration = tts.synthesize(text, voice_style=style) tts.save_audio(wav, "output.wav")
- Notebooks
- Google Colab
- Kaggle
CoreML Support - Model Added to HF + GH
#17
by Nooder - opened
Hello Supertone team!
Great work on this model! I was looking for a way to use this without the ONNX overhead on ios devices using the native CoreML format with some extra optimizations (weight compression) for various device types. I've create the hf page here: https://huggingface.co/Nooder/supertonic-2-coreml
There's an accompanying SwiftUI iOS app as well linked in the Github from that page π
Let me know if you have any questions or comments about it or want anything changed!
π₯³