Instructions to use RedHatAI/GLM-5.3-MXFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RedHatAI/GLM-5.3-MXFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="RedHatAI/GLM-5.3-MXFP4") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("RedHatAI/GLM-5.3-MXFP4") model = AutoModelForCausalLM.from_pretrained("RedHatAI/GLM-5.3-MXFP4", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use RedHatAI/GLM-5.3-MXFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RedHatAI/GLM-5.3-MXFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/GLM-5.3-MXFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RedHatAI/GLM-5.3-MXFP4
- SGLang
How to use RedHatAI/GLM-5.3-MXFP4 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "RedHatAI/GLM-5.3-MXFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/GLM-5.3-MXFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "RedHatAI/GLM-5.3-MXFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/GLM-5.3-MXFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use RedHatAI/GLM-5.3-MXFP4 with Docker Model Runner:
docker model run hf.co/RedHatAI/GLM-5.3-MXFP4
RedHatAI/GLM-5.3-MXFP4
This model is a quantized version of zai-org/GLM-5.3.
Model Optimizations
This model was obtained by quantizing the weights of zai-org/GLM-5.3 to MXFP4, ready for inference with vLLM.
Weights are quantized to FP4 (OCP Microscaling, e2m1) with a group size of 32 using power-of-2 (E8M0) scales, and activations are quantized to FP4 with dynamic local per-group scaling. Only the weights and activations of the linear operators within transformer blocks are quantized using LLM Compressor. The MoE router, embedding, the MTP eh_proj, the DSA indexer wk and weights_proj, and the output head layers are kept in their original precision.
Creation Code
from compressed_tensors.entrypoints.convert import FP8BlockDequantizer
from llmcompressor import model_free_ptq
MODEL_ID = "zai-org/GLM-5.3"
SAVE_DIR = MODEL_ID.rstrip("/").split("/")[-1] + "-MXFP4"
# modules that were not fp8-block quantized in the source checkpoint
ignore = [
"re:.*mlp.gate$",
"re:.*lm_head",
"re:.*embed_tokens$",
"re:.*eh_proj$",
"re:.*self_attn.indexer.weights_proj$",
]
model_free_ptq(
model_stub=MODEL_ID,
save_directory=SAVE_DIR,
scheme="MXFP4",
# wk IS fp8 in the source (dequantizer dequantizes it), but vLLM fuses
# wk + weights_proj into a dense (quant_config=None) layer whose fp8-only
# load path can't unpack mxfp4 weights — keep wk in bf16 instead
ignore=ignore + ["re:.*self_attn.indexer.wk$"],
converter=FP8BlockDequantizer(ignore=ignore),
max_workers=2,
device="cuda:0",
)
vLLM Serving
On 4 B200s:
vllm serve RedHatAI/GLM-5.3-MXFP4 \
--kv-cache-dtype fp8_e4m3 \
--tensor-parallel-size 4 \
--reasoning-parser glm45 \
--speculative-config '{"method":"mtp","num_speculative_tokens":5}'
Evaluations
In progress
- Downloads last month
- -
Model tree for RedHatAI/GLM-5.3-MXFP4
Base model
zai-org/GLM-5.3