Views
No views yet
1# This gives you an UNQUANTIZED model. It will not error, and it will score higher
2# than the real 1.88-bit model.
3AutoModelForCausalLM.from_pretrained("MingZwhy/Qwen3-0.6B-W1.88A8KV8-QAT-step9000")config.json here is a plain Qwen3ForCausalLM with no auto_map and no
edgerazor_config, so nothing in the file tells the loader to quantize. To use it as
a 1.88-bit model you must supply both the EdgeRazor code and the exact quantization
config it was trained under.1git clone https://github.com/MingZwhy/QAOPD && cd QAOPD
2bash tools/install_fresh_env.sh
3STUDENT_MODEL=<this checkpoint> bash scripts/train/run_unified_math.sh| weights | weight_quant_uniform_symmetric_clip_per_block_mp_int1_58_int4_static_row_wise_sparse — mixed int1.58/int4, block 256, 12.5% high-precision → 1.88 bit effective |
| activations | int8 absmax per block (block 256) — A8 |
| KV cache | int8, block 128 (exported as KV16 for deployment) |
| embedding / lm_head | int4 absmax override |
| distillation | KD logits loss (alpha 2.0, T=1.0) + task loss (alpha 0.1), teacher Qwen3-0.6B FP |