fix: progress latent collection bug

This commit is contained in:
Bryce 2024-01-03 09:00:02 -08:00 committed by Bryce Drennan
parent fdb48399af
commit d148bc1537

View File

@ -336,7 +336,8 @@ def generate_single_image(
condition_scale=prompt.prompt_strength,
**text_conditioning_kwargs,
)
lc.progress_latent_callback(x)
if lc.progress_latent_callback:
lc.progress_latent_callback(x)
# trying to clear memory. not sure if this helps
sd.unet.set_context(context="self_attention_map", value={})
sd.unet._reset_context()