You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `--session-option glm_tts.mem_saver=true|false` | bool |`false`| Release the reference-only Whisper-VQ and CAMPPlus runtimes after caching the voice, while keeping Llama, Flow, and HiFT warm. |
99
103
| `--session-option glm_tts.aggressive_mem_saver=true|false` | bool |`false`| Also release Llama, Flow, and HiFT after each stage. This minimizes VRAM but reloads the generation path on every request. |
Copy file name to clipboardExpand all lines: model_specs_v1/glm_tts.json
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"family": "glm_tts",
3
3
"display_name": "GLM-TTS",
4
-
"description": "Bilingual Chinese-English LLM-based TTS system with zero-shot voice cloning, streaming inference, reinforcement-learning-enhanced emotion and prosody control, and phoneme-level pronunciation control.",
4
+
"description": "Community Chinese-English zero-shot speech synthesis and voice cloning with native Llama, Whisper-VQ, Flow/DiT, CAMPPlus, and HiFT execution.",
5
5
"category": "tts",
6
6
"status": "community",
7
7
"tasks": [
@@ -140,15 +140,15 @@
140
140
"type": "int",
141
141
"description": "Llama weight metadata context in MiB; default 8192.",
142
142
"required": false,
143
-
"min": 0,
143
+
"min": 1,
144
144
"default": 8192
145
145
},
146
146
{
147
147
"name": "constant_context_mb",
148
148
"type": "int",
149
149
"description": "Llama constant tensor context in MiB; default 256.",
150
150
"required": false,
151
-
"min": 0,
151
+
"min": 1,
152
152
"default": 256
153
153
}
154
154
],
@@ -228,15 +228,16 @@
228
228
"packages": [
229
229
{
230
230
"id": "glm_tts_q8_0",
231
-
"display_name": "GLM-TTS Q8_0 GGUF",
231
+
"display_name": "GLM-TTS mixed Q8_0/F16 GGUF",
232
232
"default": true,
233
233
"format": "gguf",
234
234
"precision": "q8_0",
235
-
"target_directory": "GLM-TTS-GGUF",
235
+
"target_directory": "GLM-TTS-Q8",
236
236
"files": [
237
237
"Text to audio (TTS)/GLM-TTS_Q8.gguf"
238
238
],
239
239
"strip_prefix": "Text to audio (TTS)",
240
+
"description": "Standalone GGUF with the autoregressive Llama tensors retained in F16 and the speech tokenizer, Flow, HiFT, and CAMPPlus tensors stored as Q8_0.",
0 commit comments