Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions examples/quantization_w4a4_fp4/qwen3_vl_moe_w4a4_fp4.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@ def data_collator(batch):

# Configure the quantization algorithm and scheme.
# In this case, we:
# * quantize the weights to fp8 with channel-wise quantization
# * quantize the activations to fp8 with dynamic token activations
# NOTE: only datafree quantization is supported for Qwen3-VL-MoE currently
# * quantize the weights to fp4 with group-wise quantization
# * quantize the activations to fp4 with dynamic group activations
recipe = QuantizationModifier(
targets="Linear",
scheme="NVFP4",
Expand Down