CoolFace
Modelpublic

Hyun9junn/EXAONE-4.5-33B-FlatQuant-W4A16

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
0likes12downloads
Model Card

EXAONE 4.5 33B FlatQuant W4A16

A vLLM-ready FlatQuant W4A16 checkpoint derived from LGAI-EXAONE/EXAONE-4.5-33B. Weights use compressed-tensors packed INT4 storage and the FlatQuant transforms are applied by the accompanying vLLM plugin.

Quick start

bash
python -m venv .venv
source .venv/bin/activate
pip install "vllm==0.24.0"
pip install "git+https://github.com/SqueezeBits/FlatQuant-EXAONE4.5.git#subdirectory=vllm_plugin"
bash
vllm serve \
  Hyun9junn/EXAONE-4.5-33B-FlatQuant-W4A16 \
  --dtype bfloat16 \
  --tensor-parallel-size 1

The server exposes an OpenAI-compatible API at http://localhost:8000/v1.

bash
curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "Hyun9junn/EXAONE-4.5-33B-FlatQuant-W4A16",
    "messages": [{"role": "user", "content": "대한민국의 수도는 어디인가요?"}],
    "temperature": 0,
    "max_tokens": 128
  }'

Quantization

ItemValue
WeightsINT4, symmetric, group size 128
ActivationsBF16
KV cacheBF16
Storagecompressed-tensors pack-quantized
Linear backendvLLM WNA16/Marlin
Language decoderFlatQuant W4A16
Vision encoderBF16

Evaluation

All results below were measured with vLLM on EXAONE-4.5-33B. The comparison uses the BF16 base model, the official AWQ checkpoint, and this FlatQuant W4A16 checkpoint.

Perplexity

DatasetBF16AWQFlatQuant W4A16
WikiText-28.26288.63538.3787
C417.932118.359518.3465

MMLU-Pro

Five-shot evaluation with lm-eval.

SubjectBF16AWQFlatQuant W4A16
Overall71.9668.4070.02
Biology84.1081.7381.73
Business74.0267.5571.61
Chemistry75.1870.6774.56
Computer Science75.3772.4473.17
Economics79.8676.9077.84
Engineering50.7749.5449.12
Health74.5771.6473.47
History64.0463.7861.94
Law46.5944.4146.59
Math85.0582.6883.27
Other68.6164.0765.15
Philosophy71.7468.3469.14
Physics78.0669.7574.06
Psychology78.0776.5776.82

MMMU-Pro

VLM evaluation with lmms-eval.

ModelMMMU-Pro
BF16standard=17.57 / vision=21.50
AWQstandard=17.98 / vision=20.93
FlatQuant W4A16standard=18.90 / vision=20.06

Limitations

  • —vllm==0.24.0 and the FlatQuant vLLM plugin are required.
  • —Tensor parallelism is currently limited to TP=1.
  • —This checkpoint is intended for vLLM; stock Transformers does not apply the required FlatQuant transforms.

Evaluation results and reproduction commands are available in the SqueezeBits/FlatQuant-EXAONE4.5 repository.

License and attribution

This checkpoint is derived from EXAONE 4.5 and is distributed under the EXAONE model license included in LICENSE. The implementation builds on the MIT-licensed FlatQuant project.