Views
No views yet
llama arch).0..6560) cross the boundary between the
two runtimes.t3-<quant>.gguf is a stock llama arch GGUF holding only T3's
30-layer Llama backbone (hidden 1024, MLP 4096, 16 heads, RoPE θ=10000)
plus the speech-side embedding/head (speech_emb → token_embd,
speech_head → output). The vocabulary contains 8194 entries
(<|speech_0|> … <|speech_8193|>), every one marked as a CONTROL
(special) token so llama.cpp's sampler / stop / grammar paths recognise
each speech ID. BOS = 6561 (start_speech_token), EOS = 6562
(stop_speech_token); add_bos / add_eos default to false.| File | Size |
|---|---|
t3-f32.gguf | 1984 MB |
t3-f16.gguf | 992 MB |
t3-q8_0.gguf | 527 MB |
t3-q5_k_m.gguf | 352 MB |
t3-q4_k_m.gguf | 299 MB |
t3-extras.gguf (chatterbox_t3 arch, ~24 MB) carries the T3 wrapper
tensors that aren't part of the Llama backbone — text embedding/head,
learned positional embeddings, and the conditioning encoder
(perceiver / speaker / emotion fc). The host application reads these
through the gguf API to build the prompt prefix:t3.text_emb.weight, t3.text_head.weightt3.text_pos_emb.weight, t3.speech_pos_emb.weightt3.cond_enc.* (perceiver attention/ff, spkr_enc, emotion_adv_fc)chatterbox_t3.start_speech_token,
speech_cond_prompt_len, etc.) needed to drive the LLM.codec[-<quant>].gguf (chatterbox_s3g arch) — Chatterbox S3Gen
flow-matching decoder + HiFi-GAN vocoder, with built-in conditioning
(conds.pt) baked in.| File | Size |
|---|---|
codec-f32.gguf | 535 MB |
codec-f16.gguf | 268 MB |
codec-q8_0.gguf | 196 MB |
codec-q5_k_m.gguf | 167 MB |
codec-q4_k_m.gguf | 158 MB |
s3t.gguf (chatterbox_s3t arch, F16, 236 MB) — S3 audio tokenizer
(24 kHz mel front-end, 25 Hz token rate, codebook 6561). Only needed
for voice-cloning / reference-token paths.n_q = 10..6560)start_speech_token = 6561, stop_speech_token = 6562speech_tokens_dict_size)llama.cpp (≥ b8095) loads
t3-*.gguf directly. Because the model is no_vocab, the host
application is responsible for: tokenizing text via tokenizer.json,
looking up t3.text_emb for the text-side prefix, building the
conditioning prefix from t3.cond_enc.*, adding the matching learned
positional embeddings, and feeding the assembled embedding sequence
to llama_decode. After the prefix is consumed, generation proceeds
autoregressively over speech tokens (which is what the speech-side
embedding/head in t3-*.gguf are for).llama-quantize for the T3 backbone and
codec.cpp's converter (with a fix that recognises .weight names) for
the codec-part.t3_cfg.safetensors and s3gen.safetensors from
ResembleAI/chatterbox. The multilingual T3 variants
(t3_23lang, t3_mtl23ls_v2/v3) are not converted here.