Views
No views yet
tencent/UI-Mate-27B quantized to FP8 (8-bit weights).Caveat. Needs compute capability >= 8.9 (Ada/Hopper+) to run fast.
| Source | tencent/UI-Mate-27B |
| Scheme | FP8 (8-bit) |
| Format | compressed-tensors |
| Parameters | 27.4B |
| Size on disk | 30.4 GB |
| Compression | 1.80x smaller than the 54.7 GB source |
| Left unquantized | lm_head, re:.*visual.*, re:.*vision_tower.*, re:.*vision_model.*, re:.*vision.*, re:.*multi_modal_projector.*, re:.*merger.* |
| Quantized on | A100 SXM |
| Quantized by | Sohailhosseini |
1vllm serve Sohailhosseini/UI-Mate-27B-FP8 \
2 --max-model-len 327681from vllm import LLM, SamplingParams
2
3if __name__ == "__main__":
4 llm = LLM("Sohailhosseini/UI-Mate-27B-FP8", max_model_len=32768)
5 out = llm.chat(
6 [{"role": "user", "content": "What is quantization? Answer in one sentence."}],
7 SamplingParams(temperature=0.6, max_tokens=512),
8 )
9 print(out[0].outputs[0].text)recipe.yaml in this repo is the exact modifier stack that was applied, and the scheme, ignored layers and hardware are in the table above.