rkayaith/Mistral-Medium-3.5-128B-fp8-block
028
Mistral Medium 3.5 128B — FP8 Block Quantization
This is a dynamic block-FP8 derivative of `mistralai/Mistral-Medium-3.5-128B`.
LLM Compressor dequantized the released static-FP8 linear weights. It then applied the target dynamic block-FP8 recipe.
Quantization details
The quantized layers cover all attention and feed-forward projections in each decoder layer.
Hardware requirements
FP8 block acceleration requires a vLLM backend with block-scaled FP8 linear support.
This checkpoint passed validation on AMD MI350X (CDNA4, gfx950) with ROCm 7.2.3.
Note: Other hardware configurations have not been validated with this checkpoint.
Usage with vLLM
from vllm import LLM, SamplingParams
llm = LLM(
model="rkayaith/Mistral-Medium-3.5-128B-fp8-block",
language_model_only=True,
)
outputs = llm.generate(
["Tell me about AMD MI350X"],
SamplingParams(max_tokens=200, temperature=0.7),
)
print(outputs[0].outputs[0].text)Use this command to start a language-only server:
vllm serve rkayaith/Mistral-Medium-3.5-128B-fp8-block \
--language-model-onlyComparison variants
License
This derivative uses the source model's `Modified MIT License`.
Modifications: The released static-FP8 linear weights were dequantized and requantized to dynamic block FP8. No fine-tuning occurred.
