Skip to content

Commit

Permalink
remove stray print
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Jul 16, 2021
1 parent 7706bdf commit dadbf20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion denoising_diffusion_pytorch/denoising_diffusion_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ def forward(self, x, time_emb):
h = self.block1(x)

if exists(self.mlp):
print('hmmm')
h += self.mlp(time_emb)[:, :, None, None]

h = self.block2(h)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'denoising-diffusion-pytorch',
packages = find_packages(),
version = '0.6.7',
version = '0.6.8',
license='MIT',
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
author = 'Phil Wang',
Expand Down

0 comments on commit dadbf20

Please sign in to comment.