hsmin92's picture
Upload InternVL3.5-4B FP8 Dynamic checkpoint and vLLM guide
e8805c1 verified
Raw
History Blame Contribute Delete
424 Bytes
"""Compression recipe used to create this checkpoint.
Run quantization from the original BF16 checkpoint, not from an already
quantized checkpoint.
"""
from llmcompressor.modifiers.quantization import QuantizationModifier
RECIPE = QuantizationModifier(
targets="Linear",
scheme="FP8_DYNAMIC",
ignore=[
"re:.*vision_tower.*",
"re:.*multi_modal_projector.*",
"re:.*lm_head.*",
],
)