Fix remaining gate_proj/up_proj -> w1/w3 references in paired_names

This commit is contained in:
2026-05-07 00:05:55 +00:00
parent 771e42cef3
commit c40607053b

View File

@@ -293,8 +293,8 @@ def build_plan(src_dir: Path):
for base, parts in expert_pairs.items():
if "w1" in parts and "w3" in parts:
expert_pair_groups.append((base, parts["w1"], parts["w3"]))
paired_names.add(parts["gate_proj"])
paired_names.add(parts["up_proj"])
paired_names.add(parts["w1"])
paired_names.add(parts["w3"])
# Classify everything else
solo_quantize = []