This commit is contained in:
Dave Lage
2026-02-20 06:43:34 -08:00
committed by GitHub
3 changed files with 31 additions and 3 deletions

View File

@@ -4753,6 +4753,10 @@ def read_config_from_file(args: argparse.Namespace, parser: argparse.ArgumentPar
ignore_nesting_dict[section_name] = section_dict
continue
if section_name == "scale_weight_norms_map":
ignore_nesting_dict[section_name] = section_dict
continue
# if value is dict, save all key and value into one dict
for key, value in section_dict.items():
ignore_nesting_dict[key] = value