How 1-Bit Quantization-Aware Training Actually Works
Most model compression happens after training: you take a finished full-precision model and round its weights to lower bit-widths, accepting whatever accuracy you lose. PrismML does something structurally different. Their Quantization-Aware Training (QAT) bakes the binary or ternary weight constraint into the training process itself - the model learns from the start that its weights can only be -1, 0, or +1, with a single shared FP16 scale factor covering every group of 128 weights [8]. Full-precision gradients are preserved during backpropagation, but the forward pass enforces the binary or ternary constraint at every step. The result is a model that has adapted its representations to work within extreme bit-width limits, rather than a full-precision model that has been crudely rounded.
This distinction matters for performance. Post-training quantization at 1-bit typically destroys reasoning capability because the model was never trained to compensate for information loss at that compression ratio. QAT allows the network to redistribute and encode information differently across its 27 billion parameters during training, which is why PrismML can claim 89.5% performance retention on the 1-bit variant and 94.6% on the ternary variant across 15 benchmarks in thinking mode [6]. The intellectual property here is the mathematical theory required to compress a neural network without losing its reasoning capabilities, developed over years at Caltech before PrismML was founded [9]. The base model - Alibaba's Apache 2.0-licensed Qwen3.6-27B - provided an accessible foundation to demonstrate this pipeline at scale without requiring proprietary model access [1].


