We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 954f9be commit 7f6151eCopy full SHA for 7f6151e
audio_diffusion_pytorch/diffusion.py
@@ -388,7 +388,7 @@ def forward(
388
alpha, beta = self.get_alpha_beta(sigmas[i + 1].item())
389
x = x_pred * alpha + x_eps * beta
390
391
- return x
+ return x_pred
392
393
394
class KarrasSampler(Sampler):
setup.py
@@ -3,7 +3,7 @@
3
setup(
4
name="audio-diffusion-pytorch",
5
packages=find_packages(exclude=[]),
6
- version="0.0.68",
+ version="0.0.69",
7
license="MIT",
8
description="Audio Diffusion - PyTorch",
9
long_description_content_type="text/markdown",
0 commit comments