Compare commits

..

1 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -629,7 +629,7 @@ class NoiseScheduler(nn.Module):
def calculate_v(self, x_start, t, noise = None):
return (
extract(self.sqrt_alphas_cumprod, t, x_start.shape) * noise +
extract(self.sqrt_alphas_cumprod, t, x_start.shape) * noise -
extract(self.sqrt_one_minus_alphas_cumprod, t, x_start.shape) * x_start
)

View File

@@ -1 +1 @@
__version__ = '1.11.0'
__version__ = '1.11.1'