You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defcheck_all_model_params_in_groups2(model: nn.Module, param_groups: List[List[nn.Parameter]]):
num_params=len([paramforgroupinparam_groupsforparamingroup])
num_params_expected=len(list(model.parameters()))
ifnum_params!=num_params_expected:
raiseRuntimeError(
f"{num_params_expected} params in model but only {num_params} ""in parameter group"
)
The text was updated successfully, but these errors were encountered:
From icevision:
The text was updated successfully, but these errors were encountered: