Skip to content

Commit

Permalink
address lucidrains#292
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Feb 15, 2024
1 parent 840d3ff commit 7a77b45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion denoising_diffusion_pytorch/learned_gaussian_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(

self.vb_loss_weight = vb_loss_weight

def model_predictions(self, x, t, clip_x_start = False):
def model_predictions(self, x, t, x_self_cond = None, clip_x_start = False, rederive_pred_noise = False):
model_output = self.model(x, t)
model_output, pred_variance = model_output.chunk(2, dim = 1)

Expand Down
2 changes: 1 addition & 1 deletion denoising_diffusion_pytorch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.10.9'
__version__ = '1.10.10'

0 comments on commit 7a77b45

Please sign in to comment.