Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
vballoli committed Mar 3, 2021
1 parent c57fc7b commit 0e06842
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion nfnets/agc.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def zero_grad(self, set_to_none: bool = False):
for group in self.agc_params:
for p in group['params']:
if p.grad is not None:
print("Zeroing")
if set_to_none:
p.grad = None
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
setup(
name = 'nfnets-pytorch',
packages = find_packages(),
version = '0.1.0',
version = '0.1.1',
license='MIT',
description = 'NFNets, PyTorch',
long_description=long_description,
Expand Down

0 comments on commit 0e06842

Please sign in to comment.