Views
No views yet
| Parameter | Value |
|---|---|
| Method | W4A16 |
| Group size | 128 |
| Calibration | nova_floor |
| Ignored modules | re:.*lm_head, re:.*visual.* |
| Tool | llm-compressor >= 0.4.2 |
| Metric | Value |
|---|---|
| Perplexity (wikitext-2, 20 samples) | 20.703 |
| OCR sanity check | ✅ PASS |
| Tokens / second | 1.1 |
| TTFT (exact, prefill only) | 978.3 ms |
| TPOT (exact, per output token) | 933.2 ms |
| Inference VRAM | 9.13 GB |
| Disk size | 3.41 GB |
TTFT and TPOT measured withBaseStreamerinjection (prompt-skip corrected).
1from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
2import torch
3
4model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
5 "Mohaaxa/Qwen2.5-VL-3B-Instruct-W4A16-nova_floor",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9processor = AutoProcessor.from_pretrained("Mohaaxa/Qwen2.5-VL-3B-Instruct-W4A16-nova_floor")Mohaaxa/nova-quant-pipeline