feat: add Soprano TTS as community model with GGUF packages - #323
Open
drzsdrtfg wants to merge 2 commits into
Open
feat: add Soprano TTS as community model with GGUF packages#323drzsdrtfg wants to merge 2 commits into
drzsdrtfg wants to merge 2 commits into
Conversation
drzsdrtfg
marked this pull request as draft
August 27, 2026 17:22
drzsdrtfg
marked this pull request as ready for review
August 27, 2026 18:51
Contributor
Author
|
pls let me know If there are any issues. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Soprano TTS — Community Model
Soprano is an ultra-lightweight (~80M parameter) English-only text-to-speech model using a two-stage architecture: a Qwen3-style causal LM (17 layers, hidden 512, vocab 8192) that autoregressively emits per-frame 512-dimensional features, and a non-iterative Vocos-style decoder (ConvNeXt backbone + single ISTFT head, n_fft 2048 / hop 512) that turns those features into 32 kHz audio.
Reference: https://github.com/ekwek1/soprano
Weights: https://huggingface.co/ekwek/Soprano-1.1-80M
GGUF packages: https://huggingface.co/WalkingCat/Soprano-1.1-80M-GGUF
Files added
src/community_models/soprano_tts/(5 .cpp)include/engine/community_models/soprano_tts/(5 .h)model_specs/soprano_tts.jsondocs/soprano_tts.mddocs/soprano_validation.mdtests/soprano_tts/soprano_warm_bench.cpptests/soprano_tts/soprano_warm_bench_cases.txttests/soprano_tts/soprano_python_warm_bench.pytools/soprano_tts/convert_soprano.pytools/soprano_tts/run_official.pytools/soprano_tts/compare_parity.pyFiles modified
CMakeLists.txtaudiocpp_add_model+add_engine_warmbenchREADME.mddocs/gguf.mdwebui/configs/models_catalog.jsonwebui/native/dist/index.htmlBuild
Quick start
Run warmbench
Validation
CPU performance vs official Python
sopranopackage (transformers backend, temp=0.3, top_p=0.95):Key observations:
docs/soprano_validation.mdfor full validation record.Known limitations
Code and PR assisted and written by ox alpha(GLM 5.3 flash) and Deepseek v4 flash.