poipiii
commited on
Commit
•
6dfb556
1
Parent(s):
350b15e
test debug latents
Browse files- pipeline.py +2 -1
pipeline.py
CHANGED
@@ -839,7 +839,8 @@ class StableDiffusionLongPromptWeightingPipeline(StableDiffusionPipeline):
|
|
839 |
callback(i, t, latents)
|
840 |
if is_cancelled_callback is not None and is_cancelled_callback():
|
841 |
return None
|
842 |
-
|
|
|
843 |
# 9. Post-processing
|
844 |
image = self.decode_latents(latents)
|
845 |
|
|
|
839 |
callback(i, t, latents)
|
840 |
if is_cancelled_callback is not None and is_cancelled_callback():
|
841 |
return None
|
842 |
+
print(latents)
|
843 |
+
print(latents.shape)
|
844 |
# 9. Post-processing
|
845 |
image = self.decode_latents(latents)
|
846 |
|