"docs/vscode:/vscode.git/clone" did not exist on "8900450d9ea8ba50e931ae6053faf06ac73b4aeb"
Commit 35f8cb94 authored by David Novotny's avatar David Novotny Committed by Facebook GitHub Bot
Browse files

Downgrade "Assigning param_group " msg to DEBUG

Summary: <See title>

Reviewed By: bottler

Differential Revision: D41534524

fbshipit-source-id: 9c39198b9b8d5fc95f857b03ad39bfe0bd720cbb
parent c3a6ab02
......@@ -304,7 +304,7 @@ class ImplicitronOptimizerFactory(OptimizerFactoryBase):
for name, param in module.named_parameters(recurse=False):
if param.requires_grad:
group_name = mapping.get(name, default_group)
logger.info(f"Assigning {name} to param_group {group_name}")
logger.debug(f"Assigning {name} to param_group {group_name}")
param_groups[group_name].append(param)
# If children have defined default param group then use it else pass
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment