mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-30 00:00:26 +08:00
Fix no-member of EPS inherited classes
This commit is contained in:
parent
c69d4cae0a
commit
63636c3355
@ -3,6 +3,8 @@ from .ldm.modules.diffusionmodules.util import make_beta_schedule
|
|||||||
import math
|
import math
|
||||||
|
|
||||||
class EPS:
|
class EPS:
|
||||||
|
sigma_data: float = None
|
||||||
|
|
||||||
def calculate_input(self, sigma, noise):
|
def calculate_input(self, sigma, noise):
|
||||||
sigma = sigma.view(sigma.shape[:1] + (1,) * (noise.ndim - 1))
|
sigma = sigma.view(sigma.shape[:1] + (1,) * (noise.ndim - 1))
|
||||||
return noise / (sigma ** 2 + self.sigma_data ** 2) ** 0.5
|
return noise / (sigma ** 2 + self.sigma_data ** 2) ** 0.5
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user