Views
No views yet
⚠️ Non-commercial license
The base model is released under the EXAONE AI Model License Agreement 1.2 – NC, and this derivative inherits it in full. That license permits use solely for research and educational purposes. Commercial use of the model, of derivatives, or of their outputs is expressly prohibited without a separate written agreement with LG Management Development Institute. It also forbids using the model or its outputs to develop or improve competing models.This is not the permissive licensing you may expect from other quantized checkpoints. ReadLICENSEin full before you download, and do not deploy this in a product.
llmcompressor.model_free_ptq. No calibration data was
used and the model was never loaded — the quantizer operates directly on the safetensors.
Architecture, tokenizer, chat template and processor configs are the vendor's, unmodified.| component | precision | source | quantized |
|---|---|---|---|
| MLP linears (64 layers × 3) | int4 g128 | 53.86 GB | 13.88 GB |
| attention projections (64 layers × 4) | int4 g128 | 8.05 GB | 2.08 GB |
vision tower (visual.*, 28 layers) | bfloat16 | 2.57 GB | 2.57 GB |
embed_tokens | bfloat16 | 1.57 GB | 1.57 GB |
lm_head (untied) | bfloat16 | 1.57 GB | 1.57 GB |
MTP head (mtp.*) | bfloat16 | 1.07 GB | 1.07 GB |
| norms, biases | bfloat16 | 0.001 GB | 0.001 GB |
| total | 68.70 GB | 22.75 GB |
intermediate_size is 27392 against a hidden_size of
5120 — so 78% of the source checkpoint is MLP weight and quantizing it does most of the
work.visual.* — vLLM builds multimodal towers with quant_config=None, so a checkpoint
carrying quantized vision weights cannot be loaded.mtp.* — the multi-token-prediction speculator head
(num_nextn_predict_layers: 1), loaded through vLLM's speculative-decoding path rather
than the main stack. The base model card's own serving command enables it, so leaving it
at full precision keeps that path working as the vendor intends.lm_head + embed_tokens — precision-sensitive, and untied here (both tensors are
present, 1.57 GB each).Exaone4_5_ForConditionalGeneration is registered. No
nightly build needed.1vllm serve GotoAI-Inc/EXAONE-4.5-33B-W4A16 \
2 --served-model-name EXAONE-4.5-33B-W4A16 \
3 --max-model-len 131072 \
4 --reasoning-parser qwen3 \
5 --enable-auto-tool-choice --tool-call-parser hermes \
6 --limit-mm-per-prompt '{"image": 64}' \
7 --speculative_config '{"method": "mtp", "num_speculative_tokens": 3}'--quantization; compressed-tensors is detected from config.json. The int4
W4A16 scheme uses Marlin kernels and runs on compute capability 7.5 and above.exaone tool-call or
reasoning parser. The base model card specifies --reasoning-parser qwen3 (EXAONE frames
thinking with <think> tags, which that parser handles) and --tool-call-parser hermes.
Use those exact names.num_speculative_tokens: 3. Not smoke-tested here.--language-model-only frees the 2.57 GB vision tower (vLLM skips tower weights when
every modality limit is zero) plus the multimodal profiling headroom, at the cost of
image and video input.enable_thinking to true, so this model thinks unless told
otherwise:{"chat_template_kwargs": {"enable_thinking": false}} // emit an empty <think></think> and answer directly--reasoning-parser qwen3 splits the <think>…</think> block into
reasoning_content.head_dim 128. The sliding layers are bounded by the window at ~0.8 GB per sequence
regardless of context; the 16 full layers cost ~64 KB/token:| context | KV cache | + weights |
|---|---|---|
| 32k | ~2.9 GB | ~25.6 GB |
| 128k | ~9.2 GB | ~32.0 GB |
| 256k (max) | ~17.6 GB | ~40.3 GB |
factor: 16.0), configured by the
vendor and left untouched here. This is arithmetic from config.json, not a measured
deployment../llmq.py run --profile exaone-4.5-33b1# llmcompressor==0.13.1a20260814, compressed-tensors==0.18.1a20260818,
2# transformers==5.15.1, torch==2.13.0
3from llmcompressor import model_free_ptq
4
5model_free_ptq(
6 model_stub="EXAONE-4.5-33B-resharded",
7 save_directory="EXAONE-4.5-33B-W4A16",
8 scheme="W4A16",
9 ignore=["re:.*visual.*", "re:.*mtp.*", "lm_head", "re:.*embed_tokens.*"],
10 device="cuda:0",
11)LICENSE is included unmodified and applies in full to this derivative. The terms
that matter most:EXAONE-4.5-33B-W4A16.LICENSE.LICENSE. "EXAONE"
is LG's mark; this repository is not endorsed by or affiliated with LG AI Research.