add gaussian diffusion where model predicts both noise and x_start, with a learned weighting between the two (experimental)

This commit is contained in:
Phil Wang
2022-05-13 12:52:11 -07:00
parent 84ebb9ad13
commit 27853452a2
3 changed files with 83 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name = 'denoising-diffusion-pytorch',
packages = find_packages(),
version = '0.15.0',
version = '0.15.1',
license='MIT',
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
author = 'Phil Wang',