Commit
•
89b9a2b
1
Parent(s):
6e5895d
Update live_preview_helpers.py
Browse files- live_preview_helpers.py +2 -1
live_preview_helpers.py
CHANGED
@@ -153,8 +153,9 @@ def flux_pipe_call_that_returns_an_iterable_of_images(
|
|
153 |
latents_for_image = (latents_for_image / self.vae.config.scaling_factor) + self.vae.config.shift_factor
|
154 |
image = self.vae.decode(latents_for_image, return_dict=False)[0]
|
155 |
yield self.image_processor.postprocess(image, output_type=output_type)[0]
|
156 |
-
torch.cuda.empty_cache()
|
157 |
latents = self.scheduler.step(noise_pred, t, latents, return_dict=False)[0]
|
|
|
|
|
158 |
|
159 |
# Final image using good_vae
|
160 |
latents = self._unpack_latents(latents, height, width, self.vae_scale_factor)
|
|
|
153 |
latents_for_image = (latents_for_image / self.vae.config.scaling_factor) + self.vae.config.shift_factor
|
154 |
image = self.vae.decode(latents_for_image, return_dict=False)[0]
|
155 |
yield self.image_processor.postprocess(image, output_type=output_type)[0]
|
|
|
156 |
latents = self.scheduler.step(noise_pred, t, latents, return_dict=False)[0]
|
157 |
+
torch.cuda.empty_cache()
|
158 |
+
|
159 |
|
160 |
# Final image using good_vae
|
161 |
latents = self._unpack_latents(latents, height, width, self.vae_scale_factor)
|