PlaidQ 0.7B 16-step GGUF (ggmlc)
Continuous latent diffusion code tab-completion model compiled from fredzzp/plaidq-0.7b-16step (Qwen3-0.6B trunk, codebook dim 16, 16-step DDIM).
These files are not llama.cpp / llama-cli GGUFs. They are produced by
ggmlc, a neural network compiler that
lowers PyTorch / JAX / Flax / Keras models to high-performance GGML execution.
Loading them in llama.cpp will fail.
Get running
- Download a GGUF from this repo (see table below).
- Download the pre-built
tab_completionbinary from ggmlc GitHub Releases (or all releases). - CLI / daemon details — see the example README: examples/tab_completion (raw README).
The host-side DDIM sampler, FIM canvas, and codebook live in that standalone C++ binary — not in llama.cpp.
Files
| File | Quant | Size (approx) | Notes |
|---|---|---|---|
plaidq_0.7b_16step_f16.gguf |
F16 | ~1.4 GB | Reference / highest quality |
plaidq_0.7b_16step_q8_0.gguf |
Q8_0 | ~740 MB | Good quality, smaller VRAM |
plaidq_0.7b_16step_ud_q4_k_m.gguf |
UD_Q4_K_M | ~600 MB | Unsloth-dynamic Q4_K_M; 1D norms stay F32 |
Each GGUF embeds the Qwen3 BPE tokenizer, the embedding_matrix codebook, and
learned noise-schedule knots (plaidq.schedule_t / plaidq.schedule_g).
huggingface-cli download mys/plaidq-0.7b-16step-GGUF plaidq_0.7b_16step_ud_q4_k_m.gguf --local-dir .
Quick start
Put the release tab_completion binary on your PATH (or run it by path), then:
# 16-step completion on CUDA
.\tab_completion.exe complete `
plaidq_0.7b_16step_ud_q4_k_m.gguf `
--prefix "def add(a, b):`n " `
--steps 16 --score-temp 0.5 --max-tokens 32 --device cuda
./tab_completion complete \
plaidq_0.7b_16step_ud_q4_k_m.gguf \
--prefix $'def add(a, b):\n ' \
--steps 16 --score-temp 0.5 --max-tokens 32 --device cuda
Example smoke output (UD_Q4_K_M, RTX 4050 Laptop):
return a + b
# Test the function
print(add(5, 7)) # Output: 12
Notes
- Canvas length is fixed at 256 tokens (CUDA-graph friendly).
- Use
--steps 16with--score-temp 0.5for the distilled 16-step checkpoint. - The runtime forces FP32 cuBLAS accumulate on CUDA (
GGML_CUDA_CUBLAS_COMPUTE_TYPE=f32) so the vocab head stays finite on Ada GPUs.
License
Apache 2.0, same as fredzzp/plaidq-0.7b-16step. Compiler: ggmlc (MIT).
- Downloads last month
- 69
4-bit
8-bit
16-bit