-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
hi ikostrikov, I got this error when running your code
Traceback (most recent call last):
File "main.py", line 89, in <module>
agent.update_parameters(batch)
File "/home/andrewliao11/Work/pytorch-naf/naf.py", line 121, in update_parameters
param.grad.data.clamp(-1, 1)
AttributeError: 'NoneType' object has no attribute 'data'
the original code is:
for param in self.model.parameters():
param.grad.data.clamp(-1, 1)
maybe we should modify in into:
torch.nn.utils.clip_grad_norm(self.model.parameters(), 1)
I'm just a newbie to pytorch, not sure if it's right, thx!
Metadata
Metadata
Assignees
Labels
No labels