Supertonic-3
توثق هذه الصفحة من Soniqo نموذج Supertonic-3 كما هو منفذ في speech-swift / speech-core. روابط Hugging Face موجودة أدناه بعد ملاحظات الدمج.
الصفحة الداخلية أولا
بطاقات الصفحة الرئيسية وقوائم الوثائق تشير إلى هذه الصفحة أولا؛ وتبقى روابط النموذج والحزم داخلها.
لمحة سريعة
| النموذج | Supertonic-3 |
|---|---|
| الدور | G2P-free multilingual text-to-speech |
| Backend | CoreML (Apple Neural Engine / GPU) and LiteRT |
| الإخراج | 44.1 kHz mono Float32 PCM |
| اللغات | 31 languages plus a neutral na tag |
| الرخصة | OpenRAIL-M weights, MIT code |
| الحالة | Ready for CoreML; LiteRT reference implementation in speech-core |
| المصدر | Supertone Supertonic-3 |
| منتج Swift | SupertonicTTS |
| CLI / runtime | Shared TTS pipeline / server integration; LiteRT C++ wrapper for edge runtimes |
الاستخدام
المقتطف أدناه يطابق API أو الأمر الحالي في speech-swift.
import SupertonicTTS
let tts = try await SupertonicTTSModel.fromPretrained()
let pcm = try tts.synthesize(
text: "Hello from an on-device voice.",
voiceId: "F1",
language: "en"
)
روابط النموذج
ملاحظات التنفيذ
- No espeak, phonemizer, or lexicon: text is NFKD-normalized and mapped through a Unicode index table.
- Download uses explicit CoreML package globs for the four graphs plus tokenizer, config, and voice style JSON files.
- The Apple export uses dynamic latent length; the current LiteRT path uses fixed graph shapes and chunks longer text.
- Voices are precomputed style presets F1-F5 and M1-M5; on-device cloning is out of scope because the style extractor is not released.