Instructions to use aoiandroid/supertonic-2-coreml with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Supertonic
How to use aoiandroid/supertonic-2-coreml 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
File size: 1,003 Bytes
1566c3d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # Release Checklist (GitHub + Hugging Face)
## Content sanity
- [ ] `README.md` updated (overview + quickstart)
- [ ] `hf/README.md` (model card) concise and accurate
- [ ] `LICENSE`, `NOTICE`, `CITATION.cff`, `UPSTREAM.md` present and accurate
- [ ] `docs/compatibility-matrix.md` + `docs/quant-matrix.md` reflect current artifacts
- [ ] `CHANGELOG.md` has a versioned entry
## Artifacts
- [ ] 4-bit variants excluded (no `int4`/`linear4`)
- [ ] All intended CoreML variants present (mlprogram packages)
- [ ] Resources present (voice styles, embeddings, indexers)
- [ ] `manifest.json` + `SHA256SUMS` regenerated
## Tests
- [ ] Smoke test passes:
- `python3 scripts/test_coreml_models.py` (local repo)
- `python3 scripts/test_coreml_models.py --bundle-dir hf_publish` (HF bundle)
## GitHub release
- [ ] Tag created (e.g., `v0.1.0`)
- [ ] Tag pushed to GitHub
## Hugging Face
- [ ] `hf_publish/` regenerated
- [ ] HF repo sync complete
- [ ] `git lfs ls-files` shows large files tracked
|