Theme 1 – Ternary quantization offers real compression and hardware‑friendly speed gains
- “Woah. Good science.” – Kevcmk
- “This is the only time '1.58 bit' phrase makes more sense than '1 trit'” – NooneAtAll3
- “Very interesting, I was just exploring this to hopefully fit one of the latest quantized models in 16GB of VRAM.” – plqbfbv
- “They get down from 1.58 to 1.48 bits per weight by exploiting the fact that actual weights in practice are 0 51% of the time.” – infogulch
- “If ternary LLMs work out and are baked into hardware as custom silicon I bet they'll be shockingly efficient.” – infogulch
- “Sounds like a perfect fit for ASIC‑optimized models … achieving record power efficiency for on‑device inference.” – yalok
- “Pushing past log₂(3) for real. This could drastically shrink LLMs for embedded systems, making them truly portable.” – Marchant_hq
- “It also means you can read them faster, more parameters per second during an inference which tends to be memory bandwidth limited on most systems. Thus faster inferences.” – pieter3d
Theme 2 – Trade‑offs vs. other quantization schemes (vector QT, PTQ, QAT)
- “Ternary quantization does not make any sense. Vector quantization and trellis based methods are better in this region for PTQ.” – om8
- “If you want sub‑2‑bit LLM, get one that’s already trained in higher precision, and compress it with something like YAQA/QTIP with finetuning or PV‑tuning + AQLM/HIGGS.” – om8
- “PTQ and vector quantization aren’t used for this because part of the point of ternary LLMs is to make them faster. In a ternary LLM every weight is an add, subtract, or no‑op so it is fast on CPU.” – janalsncm
- “If you’re just using a code book to reconstruct a f16 model the only savings you can get are in sending it over the wire.” – janalsncm
- “That’s why you need to use efficient GEMM kernels like FLUTE for inference. They are ~as good as what you can do with ternary quantization.” – om8
- “We can barely quantize to dynamic fp4 with small block size – still not completely lossless on all benchmarks.” – kadushka
- “The average information content of transformer LLMs is about 3‑4 bits per parameter, but 4‑bit block‑wise quantization does not guarantee preserving 4 bits of useful information per parameter.” – kadushka
- “QAT helps, but usually at the cost of learning efficiency.” – kadushka
- “You are conflating post‑training quantization and low‑bit training.” – danielmarkbruce
- “Bitnet also keeps high‑precision latent weights during training; the optimizer updates those, while the forward‑pass weights are quantized to ternary values.” – danielmarkbruce
Theme 3 – Practical deployment: bandwidth, inference speed, model scaling, and accuracy‑recovery tricks
- “Sending it across the wire over and over … is actually the main bottleneck.” – mitxela (referring to janalsncm’s wire‑saving comment)
- “Another complementary option is, if the model is fast enough, we should be able to push up correctness by self‑consistency voting at close to T=1. Smart/fast Zero‑shot classifiers like the recent Jev could help with aggregation across answers …” – Vetch
- “I'm not convinced by this argument – if such a method improves accuracy of a degraded quantized model, then it could in theory also help non‑degraded full‑precision model. And if so, then we are back to square one …” – kadushka
- “We do know one thing – increasing the size of the model usually makes it more robust to quantization. If going from 8 bits to 2 bits speeds things up by a factor of, say, 4×, then if we double the size of the model, we might still end up with an overall speedup.” – kadushka
- “Only a presence bitmap? If we're contemplating packing schemes I'm tempted to write a paper that uses arithmetic coding to squeeze out a few more centi‑bits.” – wgd
- “Per [0], a model needs only ~30% more weights to be at comparable quality, if quantization‑aware training is done …” – yalok
- “We measure the actual symbol distribution of 29 ternary LLM models and find that zeros account for up to 51.5% of all weights. Motivated by this finding, we introduce BITCOS, a simple distribution‑adaptive layout.” – c7b
These three themes capture the dominant conversation: the promise of ternary quantization for compact, fast hardware‑friendly models; the skepticism and comparison with alternative quantization techniques; and the real‑world engineering concerns around bandwidth, inference speed, model scaling, and methods to recover accuracy.