Created using
turboquant-plus-vllm streaming checkpoint creation on a $0.11/hr CPU instance. Total cost: $0.84.
The same code path was validated on GLM-4.7-Flash (355B, same MoE architecture with 64 experts) where it loaded successfully and scored correctly on all test prompts with 13.3 GB GPU memory.
The WHT rotation + Gaussian Lloyd-Max codebook from
TurboQuant (ICLR 2026). After a random Walsh-Hadamard rotation, weight distributions become near-Gaussian, making them efficiently quantizable with 8 centroids (3-bit) per 128-element group. Zero calibration data needed.
The checkpoint stores packed 3-bit indices + per-group norms. The loader handles:
1from turboquant_vllm import load_tq3_model
2
3model, tokenizer = load_tq3_model("varjosoft/GLM-5.1-Open-TQ3", device="cuda")
4# Requires multi-GPU setup — see requirements below
Without TQ3, the BF16 model requires 1,510 GB VRAM (minimum 8× B300 at $55.92/hr).
MIT (same as base model). Created by
Varjosoft Oy.