Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,20 @@
enable: false
- quantizer_name: 'output.*'
enable: false
# Multimodal vision branch: keep the vision encoder (SigLIP / ViT) and any
# multimodal embedding projection in BF16 by default. Recipes that enable bare
# `*weight_quantizer` / `*input_quantizer` or `*mlp*` wildcards otherwise also
# match the vision tower (`model.vision_tower.*`, `model.visual.*`) and the
# embedding projection (`model.embed_vision.*`); quantizing the vision branch
# crashes export / produces garbage image embeddings on VL models (gemma-4,
# Qwen3.5-VL — NVBugs 6293731, 6293762, 6294017). A recipe that intentionally
# quantizes vision must re-enable these after importing this unit.
- quantizer_name: '*embed_vision*'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recently added vision tower and visual for qwen3.6:


Could you rebase and resolve the overlap?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me do it in #1690

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resolved in #1690 (commit 0cf494b). I rebased #1690 onto main and removed the duplicate bare *visual* / *vision_tower* entries your qwen3.6 change added, keeping the single documented block that disables *vision_tower* / *visual* / *embed_vision* — so each glob appears exactly once. I also dropped the now-redundant explicit vision excludes from the new huggingface/gemma4/ptq/w4a8_awq-kv_fp8_cast.yaml recipe since they're inherited from the shared unit. Verified load_recipe still resolves all three globs as disabled with *weight_quantizer enabled (INT4).

enable: false
- quantizer_name: '*vision_tower*'
enable: false
- quantizer_name: '*visual*'
enable: false
- parent_class: 'nn.BatchNorm1d'
quantizer_name: '*'
enable: false
Expand Down
Loading