mirror of
https://github.com/wassname/denoising-diffusion-pytorch.git
synced 2026-09-11 12:11:43 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dadbf20154 |
@@ -150,7 +150,6 @@ class ResnetBlock(nn.Module):
|
|||||||
h = self.block1(x)
|
h = self.block1(x)
|
||||||
|
|
||||||
if exists(self.mlp):
|
if exists(self.mlp):
|
||||||
print('hmmm')
|
|
||||||
h += self.mlp(time_emb)[:, :, None, None]
|
h += self.mlp(time_emb)[:, :, None, None]
|
||||||
|
|
||||||
h = self.block2(h)
|
h = self.block2(h)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|||||||
setup(
|
setup(
|
||||||
name = 'denoising-diffusion-pytorch',
|
name = 'denoising-diffusion-pytorch',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
version = '0.6.7',
|
version = '0.6.8',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
|
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
|
||||||
author = 'Phil Wang',
|
author = 'Phil Wang',
|
||||||
|
|||||||
Reference in New Issue
Block a user