Skip to content

Commit

Permalink
fix EDMDiscretization sigma_min for correct sampling noise scheduling (
Browse files Browse the repository at this point in the history
  • Loading branch information
johngull authored Aug 17, 2023
1 parent 7dcf5be commit c4b74b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sgm/modules/diffusionmodules/discretizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_sigmas(self, n, device):


class EDMDiscretization(Discretization):
def __init__(self, sigma_min=0.02, sigma_max=80.0, rho=7.0):
def __init__(self, sigma_min=0.002, sigma_max=80.0, rho=7.0):
self.sigma_min = sigma_min
self.sigma_max = sigma_max
self.rho = rho
Expand Down

0 comments on commit c4b74b9

Please sign in to comment.