diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-29 14:22:04 -0400 |
---|---|---|
committer | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-29 14:22:04 -0400 |
commit | 549b475be9b5cf1dca0a7bad2b6a6381e50e2b37 (patch) | |
tree | b2d9b9cff032ad556a839f845e7dc390443c8871 /modules/script_callbacks.py | |
parent | 04b90328c0aa86670cfe5d31612d341e29b5a258 (diff) |
Add noisy latent to ExtraNoiseParams for callback
Diffstat (limited to 'modules/script_callbacks.py')
-rw-r--r-- | modules/script_callbacks.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/script_callbacks.py b/modules/script_callbacks.py index fab23551..c99695eb 100644 --- a/modules/script_callbacks.py +++ b/modules/script_callbacks.py @@ -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:
|