Hello!
So I usually used a function like this to reset parameters of the multiagent networks
def reset_child_params(module):
for layer in module.children():
if hasattr(layer, "reset_parameters"):
layer.reset_parameters()
reset_child_params(layer)
After #1921 this seems to have no effect.
Is there a suggested way to reset the parameters?
Thanks!