Views
No views yet
| Precision | Format | Size | Description |
|---|---|---|---|
| 8-bit | .lutmac | 1.49 GB | Standard Int8 quantization. |
| 6-bit | .lutmac | 1.18 GB | Int6 quantization for high efficiency. |
| 5-bit | .lutmac | 1.03 GB | Int5 quantization balanced weight. |
| 4-bit | .lutmac | 870 MB | Optimized 4-bit quantization with tied embeddings (8-bit). |
| 3-bit | .lutmac | 714 MB | Int3 quantization for memory-constrained devices. |
| 2-bit | .lutmac | 578 MB | 2-bit quantization using Hadamard Rotation and RRQ. |
| 1.58-bit | .lutmac | 578 MB | Ternary quantization {-1, 0, +1} (Sign-Magnitude encoding). |
| 1-bit | .lutmac | 402 MB | Binary quantization {-1, +1} (Purely bit-serial). |
1git clone https://github.com/YASSERRMD/lutmac.git
2cd lutmac
3mkdir build && cd build
4cmake .. -DCMAKE_BUILD_TYPE=Release
5make -j4.lutmac file and the tokenizer.json from this repository.1./lutmac-inference \
2 --model ./qwen2.5-1.5b-instruct-4bit.lutmac \
3 --tokenizer ./tokenizer.json \
4 --prompt "What is the capital of France?" \
5 --max-tokens 100 \
6 --streaming