This commit is contained in:
Dave Lage
2026-01-23 03:08:18 -05:00
committed by GitHub
3 changed files with 31 additions and 3 deletions

View File

@@ -4748,6 +4748,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