Add noisy latent to ExtraNoiseParams for callback

This commit is contained in:
catboxanon
2023-08-29 14:22:04 -04:00
parent 04b90328c0
commit 549b475be9
3 changed files with 7 additions and 4 deletions

View File

@@ -29,12 +29,15 @@ class ImageSaveParams:
class ExtraNoiseParams:
def __init__(self, noise, x):
def __init__(self, noise, x, xi):
self.noise = noise
"""Random noise generated by the seed"""
self.x = x
"""Latent image representation of the image"""
"""Latent representation of the image"""
self.xi = xi
"""Noisy latent representation of the image"""
class CFGDenoiserParams: