Views
No views yet
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen3.6-27B |
| Quantization Method | FABQ-RC |
| Format | Custom PyTorch state dict (.pth) |
| Bits per Parameter | ~1.18 bpw |
| Precision Allocation | Top 5% channels → int8, 95% → binary ±1 |
| Blocksize | Adaptive per-layer (selected from {16, 32, 64, 128, 256}) |
| Residual Codebook | 256-entry k-means centroids, per-layer |
| Architecture | Qwen3.5 hybrid (DeltaNet + Gated Attention), 27B dense, 64 layers, hidden 5120 |
| Modalities | Text only (vision encoder not included) |
| Context Length | 262,144 tokens |
| File | Size | Description |
|---|---|---|
quantized_model.pth | 52.9 GB | FABQ-RC quantized state dict (int8 cores + binary weights + codebooks + Fisher masks) |
config.json | 4.3 kB | Architecture metadata, mirrors Qwen/Qwen3.6-27B text config |
generation_config.json | 202 B | Sampler defaults |
tokenizer.json, tokenizer_config.json, vocab.json, merges.txt | ~23 MB | Tokenizer (mirrored from base, unchanged) |
chat_template.jinja | 7.8 kB | Chat template (mirrored from base) |
README.md | this file | Model card |
Note: thequantized_model.pthis a custom format. Standardtransformers/vLLM/llama.cppwill NOT load it. See Loading below.
Main-FABQ-RC-Notebook.ipynb. The notebook contains the FABQ_RC_Model
class that reconstructs the binary weights, applies the int8 cores, and runs the
residual codebook lookup at inference time.1# Pseudocode — see Main-FABQ-RC-Notebook.ipynb for the real loader
2import torch
3from fabq_rc import FABQ_RC_Model # from toxzak/fabq-rc repo
4
5state_dict = torch.load("quantized_model.pth", map_location="cuda")
6model = FABQ_RC_Model.from_quantized_state(state_dict).cuda()
7output = model.generate("The future of 1-bit quantization is", max_new_tokens=128)transformers >= 4.57.1 for tokenizer/config parsingtoxzak/Qwen3.6-27B-Q1_K-GGUF-bucket) contains a 3.36 GB
GGUF export of the binary weights only, but that export drops the int8 cores and the
residual codebook. It is a partial export and will produce degraded output.
The .pth in this repo is the complete artifact.Qwen3.6-27B is not included; this
artifact is text-only..gguf shard in the
companion bucket is not a runnable llama.cpp model.| Property | Value |
|---|---|
| Method | FABQ-RC (see spec) |
| Calibration | C4 dataset, 2048 samples |
| Sequence Length | 32 tokens |
| Hardware | A100 80GB GPU |
| Method Origin | Designed by Zachary Maronek, 2026-04-05 |
| Method | bpw | Perplexity | Notes |
|---|---|---|---|
| FP16 | 16.0 | baseline | Qwen3.6-27B full precision |
| Q1_0_g128 | 1.125 | degraded | Bonsai's format |
| BiLLM | 1.08 | ~8.41 (70B) | Best prior work |
| FABQ-RC | ~1.18 | TBD | This artifact |
1@misc{fabqrc2026,
2 author = {Zach Maronek},
3 title = {FABQ-RC: Fisher-Adaptive Binary Quantization with Residual Codebooks},
4 year = {2026},
5 url = {https://huggingface.co/toxzak/fabq-rc}
6}