File size: 8,374 Bytes
8b70580 c4a421f 8b70580 1a842d0 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 c4a421f 8b70580 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 9514aa6 bbced90 8b70580 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
---
tags:
- fp4
- vllm
language:
- en
- de
- fr
- it
- pt
- hi
- es
- th
pipeline_tag: text-generation
license: apache-2.0
base_model: Qwen/Qwen3-235B-A22B-Instruct-2507
---
# Qwen3-235B-A22B-Instruct-2507-NVFP4
## Model Overview
- **Model Architecture:** Qwen/Qwen3-235B-A22B-Instruct-2507
- **Input:** Text
- **Output:** Text
- **Model Optimizations:**
- **Weight quantization:** FP4
- **Activation quantization:** FP4
- **Out-of-scope:** Use in any manner that violates applicable laws or regulations (including trade compliance laws). Use in languages other than English.
- **Release Date:** 10/29/2025
- **Version:** 1.0
- **Model Developers:** RedHatAI
This model is a quantized version of [Qwen/Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507).
It was evaluated on a several tasks to assess the its quality in comparison to the unquatized model.
### Model Optimizations
This model was obtained by quantizing the weights and activations of [Qwen/Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507) to FP4 data type, ready for inference with vLLM>=0.9.1
This optimization reduces the number of bits per parameter from 16 to 4, reducing the disk size and GPU memory requirements by approximately 75%.
Only the weights and activations of the linear operators within transformers blocks are quantized using [LLM Compressor](https://github.com/vllm-project/llm-compressor).
## Deployment
### Use with vLLM
This model can be deployed efficiently using the [vLLM](https://docs.vllm.ai/en/latest/) backend, as shown in the example below.
```python
from vllm import LLM, SamplingParams
from transformers import AutoTokenizer
model_id = "RedHatAI/Qwen3-235B-A22B-Instruct-2507-NVFP4"
number_gpus = 1
sampling_params = SamplingParams(temperature=0.6, top_p=0.9, max_tokens=256)
tokenizer = AutoTokenizer.from_pretrained(model_id)
messages = [
{"role": "system", "content": "You are a pirate chatbot who always responds in pirate speak!"},
{"role": "user", "content": "Who are you?"},
]
prompts = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
llm = LLM(model=model_id, tensor_parallel_size=number_gpus)
outputs = llm.generate(prompts, sampling_params)
generated_text = outputs[0].outputs[0].text
print(generated_text)
```
vLLM aslo supports OpenAI-compatible serving. See the [documentation](https://docs.vllm.ai/en/latest/) for more details.
## Creation
This model was created by applying [LLM Compressor with calibration samples from UltraChat](https://github.com/vllm-project/llm-compressor/blob/main/examples/quantization_w4a4_fp4/llama3_example.py), as presented in the code snipet below.
<details>
```python
from datasets import load_dataset
from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier
from llmcompressor.modifiers.quantization import GPTQModifier
from llmcompressor.modifiers.smoothquant import SmoothQuantModifier
from transformers import AutoConfig, AutoModelForCausalLM, AutoTokenizer
from llmcompressor.modeling.prepare import replace_modules_for_calibration
MODEL_ID = "Qwen/Qwen3-235B-A22B-Instruct-2507"
#Load model.
model = AutoModelForCausalLM.from_pretrained(
MODEL_ID, device_map=None, torch_dtype="auto"
)
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID)
print(model)
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID)
DATASET_ID = "HuggingFaceH4/ultrachat_200k"
DATASET_SPLIT = "train_sft"
NUM_CALIBRATION_SAMPLES = 256
MAX_SEQUENCE_LENGTH = 1024
# --- Replace MoE modules for calibration ---
model = replace_modules_for_calibration(model, calibrate_all_experts=False)
# Load dataset and preprocess.
ds = load_dataset(DATASET_ID, split=f"{DATASET_SPLIT}[:{NUM_CALIBRATION_SAMPLES}]")
ds = ds.shuffle(seed=42)
def preprocess(example):
return {
"text": tokenizer.apply_chat_template(
example["messages"],
tokenize=False,
)
}
ds = ds.map(preprocess)
# Tokenize inputs.
def tokenize(sample):
return tokenizer(
sample["text"],
padding=False,
max_length=MAX_SEQUENCE_LENGTH,
truncation=True,
add_special_tokens=False,
)
ds = ds.map(tokenize, remove_columns=ds.column_names)
recipe = QuantizationModifier(
targets="Linear",
scheme="NVFP4",
ignore=["re:.*lm_head.*", "re:.*mlp.gate$", "re:.*self_attn",
],
)
# Save to disk in compressed-tensors format.
SAVE_DIR = MODEL_ID.rstrip("/").split("/")[-1] + "-NVFP4"
# Apply quantization.
oneshot(
model=model,
dataset=ds,
recipe=recipe,
max_seq_length=MAX_SEQUENCE_LENGTH,
num_calibration_samples=NUM_CALIBRATION_SAMPLES,
output_dir=SAVE_DIR,
pipeline="sequential",
sequential_targets=["Qwen3MoeDecoderLayer"],
calibrate_moe_context=True,
)
# Save to disk in compressed-tensors format.
model.save_pretrained(SAVE_DIR, save_compressed=True)
tokenizer.save_pretrained(SAVE_DIR)
```
</details>
## Evaluation
This model was evaluated on the well-known OpenLLM v1, OpenLLM v2 and HumanEval_64 benchmarks using [lm-evaluation-harness](https://github.com/neuralmagic/lm-evaluation-harness). The Reasoning evals were done using [ligheval](https://github.com/neuralmagic/lighteval).
### Accuracy
<table>
<thead>
<tr>
<th>Category</th>
<th>Metric</th>
<th>Qwen/Qwen3-235B-A22B-Instruct-2507</th>
<th>RedHatAI/Qwen3-235B-A22B-Instruct-2507-NVFP4 (this model)</th>
<th>Recovery</th>
</tr>
</thead>
<tbody>
<<!-- OpenLLM V1 -->
<tr>
<td rowspan="7"><b>OpenLLM V1</b></td>
<td>arc_challenge</td>
<td>72.78</td>
<td>72.27</td>
<td>99.29</td>
</tr>
<tr>
<td>gsm8k</td>
<td>89.92</td>
<td>90.37</td>
<td>100.50</td>
</tr>
<tr>
<td>hellaswag</td>
<td>87.77</td>
<td>87.54</td>
<td>99.74</td>
</tr>
<tr>
<td>mmlu</td>
<td>87.48</td>
<td>87.08</td>
<td>99.54</td>
</tr>
<tr>
<td>truthfulqa_mc2</td>
<td>62.10</td>
<td>60.89</td>
<td>98.06</td>
</tr>
<tr>
<td>winogrande</td>
<td>82.95</td>
<td>81.69</td>
<td>98.47</td>
</tr>
<tr>
<td><b>Average</b></td>
<td><b>80.50</b></td>
<td><b>79.97</b></td>
<td><b>101.43</b></td>
</tr>
<!-- OpenLLM V2 -->
<tr>
<td rowspan="6"><b>OpenLLM V2</b></td>
<td>BBH</td>
<td>68.3</td>
<td>69.05</td>
<td>101.01%</td>
</tr>
<tr>
<td>MMLU-Pro</td>
<td>63.51</td>
<td>63.33</td>
<td>99.72</td>
</tr>
<tr>
<td>MuSR</td>
<td>45.11</td>
<td>45.77</td>
<td>101.46</td>
</tr>
<tr>
<td>IFEval</td>
<td>90.17</td>
<td>91.01</td>
<td>100.93</td>
</tr>
<tr>
<td>GPQA</td>
<td>34.56</td>
<td>35.49</td>
<td>102.7</td>
</tr>
<tr>
<td><b>Average</b></td>
<td>60.33</td>
<td><b>60.93</b></td>
<td>101.00</td>
</tr>
<tr>
<td rowspan="3"><b>Reasoning</b></td>
<td>GPQA (Diamond, 0-shot)</td>
<td>69.19</td>
<td>64.65</td>
<td>93.44</td>
</tr>
<tr>
<td>Math-500 (0-shot)</td>
<td>94.20</td>
<td>89.20</td>
<td>94.69</td>
</tr>
<tr>
<td><b>Average</b></td>
<td><b>81.70</b></td>
<td><b>76.93</b></td>
<td><b>94.16</b></td>
</tr>
<!-- Coding -->
<tr>
<td rowspan="1"><b>Coding</b></td>
<td>HumanEval_64 pass@2</td>
<td>96.67</td>
<td>96.46</td>
<td>99.78</td>
</tr>
</tbody>
</table>
### Reproduction
The results were obtained using the following commands:
<details>
```
lm_eval \
--model vllm \
--model_args pretrained="RedHatAI/Qwen3-235B-A22B-Instruct-2507-NVFP4",dtype=auto,max_model_len=4096,tensor_parallel_size=2,enable_chunked_prefill=True,enforce_eager=True\
--apply_chat_template \
--fewshot_as_multiturn \
--tasks openllm \
--batch_size auto
```
#### OpenLLM v2
```
lm_eval \
--model vllm \
--model_args pretrained="RedHatAI/Qwen3-235B-A22B-Instruct-2507-NVFP4",dtype=auto,max_model_len=4096,tensor_parallel_size=2,enable_chunked_prefill=True,enforce_eager=True\
--apply_chat_template \
--fewshot_as_multiturn \
--tasks leaderboard \
--batch_size auto
```
#### HumanEval_64
```
lm_eval \
--model vllm \
--model_args pretrained="RedHatAI/Qwen3-235B-A22B-Instruct-2507-NVFP4",dtype=auto,max_model_len=4096,tensor_parallel_size=2,enable_chunked_prefill=True,enforce_eager=True\
--apply_chat_template \
--fewshot_as_multiturn \
--tasks humaneval_64_instruct \
--batch_size auto
```
</details> |