Compare commits

..
1 Commits
2 changed files with 2 additions and 2 deletions
@@ -187,7 +187,7 @@ class ContinuousTimeGaussianDiffusion(nn.Module):
# in Imagen, this was changed to dynamic thresholding
x_start.clamp_(-1., 1.)
model_mean = alpha_next * (x * (1 - c) / alpha + c * x_start)
model_mean = alpha_next / alpha * x * (1 - c) + alpha_next * c * x_start
else:
model_mean = alpha_next / alpha * (x - c * sigma * pred_noise)
+1 -1
View File
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name = 'denoising-diffusion-pytorch',
packages = find_packages(),
version = '0.17.6',
version = '0.17.5',
license='MIT',
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
author = 'Phil Wang',