remove stray print

This commit is contained in:
Phil Wang
2021-07-16 15:18:20 -07:00
parent 7706bdfc6f
commit dadbf20154
2 changed files with 1 additions and 2 deletions
@@ -150,7 +150,6 @@ class ResnetBlock(nn.Module):
h = self.block1(x)
if exists(self.mlp):
print('hmmm')
h += self.mlp(time_emb)[:, :, None, None]
h = self.block2(h)
+1 -1
View File
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
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',