Views
No views yet
deepseek-ai/DeepSeek-R1-Distill-Qwen-7B. Calibration-free companion to drawais/DeepSeek-R1-Distill-Qwen-7B-AWQ-INT4.| Source params | 7B (distilled from R1) |
| Quantized weights | ~5.3 GB on disk |
| Inference VRAM (incl. KV cache @ 32K context) | ~10 GB |
1from transformers import AutoTokenizer
2from hqq.models.hf.base import AutoHQQHFModel
3
4tok = AutoTokenizer.from_pretrained("drawais/DeepSeek-R1-Distill-Qwen-7B-HQQ-INT4")
5model = AutoHQQHFModel.from_quantized("drawais/DeepSeek-R1-Distill-Qwen-7B-HQQ-INT4", device="cuda")