Skip to content

Commit 35f8cb9

Browse files
davnov134facebook-github-bot
authored andcommitted
Downgrade "Assigning param_group " msg to DEBUG
Summary: <See title> Reviewed By: bottler Differential Revision: D41534524 fbshipit-source-id: 9c39198b9b8d5fc95f857b03ad39bfe0bd720cbb
1 parent c3a6ab0 commit 35f8cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/implicitron_trainer/impl/optimizer_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def traverse(module, default_group: str, mapping: Dict[str, str]) -> None:
304304
for name, param in module.named_parameters(recurse=False):
305305
if param.requires_grad:
306306
group_name = mapping.get(name, default_group)
307-
logger.info(f"Assigning {name} to param_group {group_name}")
307+
logger.debug(f"Assigning {name} to param_group {group_name}")
308308
param_groups[group_name].append(param)
309309

310310
# If children have defined default param group then use it else pass

0 commit comments

Comments
 (0)