Views
No views yet
meta-models/Muse-Glimmer-30B,
pinned at revision a4e59da52a7bc87ae7251dd5545c0dd437c44b68.lm_head remain unquantized.| Property | Value |
|---|---|
| Format | OCP MXFP8 E4M3 |
| Group size | 32 elements |
| Scale data type | Unsigned 8-bit E8M0 |
| Weight quantization | Static, per 32-element group |
| Activation quantization | Dynamic, per 32-element group |
| Layers quantized | 416 language-model linear weights in 52 decoder layers |
| Layers skipped | lm_head, vision tower, vision adapter, vision projection |
| Checkpoint format | compressed-tensors |
| Conversion software | LLM Compressor 0.13.0, Compressed Tensors 0.18.0 |
RocmDotScaledMxfp8LinearKernel for the quantized
linear layers.Note: Multimodal generation, model-quality parity, and other hardware configurations have not been validated with this checkpoint.
1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="rkayaith/Muse-Glimmer-30B-mxfp8",
5 language_model_only=True,
6)
7
8outputs = llm.generate(
9 ["Tell me about AMD Instinct MI350X."],
10 SamplingParams(max_tokens=200, temperature=0.7),
11)
12print(outputs[0].outputs[0].text)1vllm serve rkayaith/Muse-Glimmer-30B-mxfp8 \
2 --language-model-only| Variant | Repository | Format |
|---|---|---|
| BF16 | meta-models/Muse-Glimmer-30B | Source BF16 checkpoint |
| Dynamic block FP8 | RedHatAI/Muse-Glimmer-30B-FP8-block | FP8 E4M3, 128x128 weight blocks, dynamic 128-element activation groups |
| Block MXFP8 | rkayaith/Muse-Glimmer-30B-mxfp8 | OCP MXFP8, 32-element groups |
Apache License 2.0.
Use of the model must also comply with the source model's
Usage Policy.lm_head were retained without
quantization. No fine-tuning occurred.