diff options
author | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-11-02 00:25:08 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 00:25:08 +0700 |
commit | f8c6468d42e1202f7aeaeb961ab003aa0a2daf99 (patch) | |
tree | a2542ce9bd8bba1e8aa93acd510a12ca8a0b344f /modules/sd_hijack.py | |
parent | 7c8c3715f552378cf81ad28f26fad92b37bd153d (diff) | |
parent | 198a1ffcfc963a3d74674fad560e87dbebf7949f (diff) |
Merge branch 'master' into vae-picker
Diffstat (limited to 'modules/sd_hijack.py')
-rw-r--r-- | modules/sd_hijack.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/sd_hijack.py b/modules/sd_hijack.py index 0f10828e..bc49d235 100644 --- a/modules/sd_hijack.py +++ b/modules/sd_hijack.py @@ -94,6 +94,10 @@ class StableDiffusionModelHijack: if type(model_embeddings.token_embedding) == EmbeddingsWithFixes:
model_embeddings.token_embedding = model_embeddings.token_embedding.wrapped
+ self.layers = None
+ self.circular_enabled = False
+ self.clip = None
+
def apply_circular(self, enable):
if self.circular_enabled == enable:
return
|