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
2 changes: 1 addition & 1 deletion python/sglang/srt/models/mllama4.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ def _handle_scale_remapping(self, name: str, params_dict: dict) -> bool:
"""Handle scale parameter remapping. Returns True if handled."""
if "scale" in name and "expert" not in name:
remapped_name = maybe_remap_kv_scale_name(name, params_dict)
return remapped_name is not None and remapped_name != name
return remapped_name != name
return False

def _handle_stacked_params(
Expand Down
Loading