You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/diffusers/modular_pipelines/stable_diffusion_xl/denoise.py
+23-15Lines changed: 23 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -687,9 +687,11 @@ class StableDiffusionXLDenoiseLoop(StableDiffusionXLDenoiseLoopWrapper):
687
687
defdescription(self) ->str:
688
688
return (
689
689
"Denoise step that iteratively denoise the latents. "
690
-
"Its loop logic is defined in parent class `StableDiffusionXLDenoiseLoopWrapper` "
691
-
"and at each iteration, it runs blocks defined in `blocks` sequencially, i.e. `StableDiffusionXLDenoiseLoopBeforeDenoiser` and `StableDiffusionXLDenoiseLoopDenoiser`, "
692
-
"and finally `StableDiffusionXLDenoiseLoopAfterDenoiser` to update the latents."
690
+
"Its loop logic is defined in `StableDiffusionXLDenoiseLoopWrapper.__call__` method \n"
691
+
"and at each iteration, it runs blocks defined in `blocks` sequencially:\n"
@@ -699,10 +701,12 @@ class StableDiffusionXLControlNetDenoiseLoop(StableDiffusionXLDenoiseLoopWrapper
699
701
@property
700
702
defdescription(self) ->str:
701
703
return (
702
-
"Denoise step that iteratively denoise the latents with controlnet. "
703
-
"Its loop logic is defined in parent class `StableDiffusionXLDenoiseLoopWrapper` "
704
-
"and at each iteration, it runs blocks defined in `blocks` sequencially, i.e. `StableDiffusionXLDenoiseLoopBeforeDenoiser` and `StableDiffusionXLControlNetDenoiseLoopDenoiser`, "
705
-
"and finally `StableDiffusionXLDenoiseLoopAfterDenoiser` to update the latents."
704
+
"Denoise step that iteratively denoise the latents with controlnet. \n"
705
+
"Its loop logic is defined in `StableDiffusionXLDenoiseLoopWrapper.__call__` method \n"
706
+
"and at each iteration, it runs blocks defined in `blocks` sequencially:\n"
@@ -712,10 +716,12 @@ class StableDiffusionXLInpaintDenoiseLoop(StableDiffusionXLDenoiseLoopWrapper):
712
716
@property
713
717
defdescription(self) ->str:
714
718
return (
715
-
"Denoise step that iteratively denoise the latents(for inpainting task only). "
716
-
"Its loop logic is defined in parent class `StableDiffusionXLDenoiseLoopWrapper` "
717
-
"and at each iteration, it runs blocks defined in `blocks` sequencially, i.e. `StableDiffusionXLInpaintDenoiseLoopBeforeDenoiser` and `StableDiffusionXLDenoiseLoopDenoiser`, "
718
-
"and finally `StableDiffusionXLInpaintDenoiseLoopAfterDenoiser` to update the latents."
719
+
"Denoise step that iteratively denoise the latents(for inpainting task only). \n"
720
+
"Its loop logic is defined in `StableDiffusionXLDenoiseLoopWrapper.__call__` method \n"
721
+
"and at each iteration, it runs blocks defined in `blocks` sequencially:\n"
@@ -724,10 +730,12 @@ class StableDiffusionXLInpaintControlNetDenoiseLoop(StableDiffusionXLDenoiseLoop
724
730
@property
725
731
defdescription(self) ->str:
726
732
return (
727
-
"Denoise step that iteratively denoise the latents(for inpainting task only) with controlnet. "
728
-
"Its loop logic is defined in parent class `StableDiffusionXLDenoiseLoopWrapper` "
729
-
"and at each iteration, it runs blocks defined in `blocks` sequencially, i.e. `StableDiffusionXLInpaintDenoiseLoopBeforeDenoiser` and `StableDiffusionXLControlNetDenoiseLoopDenoiser`, "
730
-
"and finally `StableDiffusionXLInpaintDenoiseLoopAfterDenoiser` to update the latents."
733
+
"Denoise step that iteratively denoise the latents(for inpainting task only) with controlnet. \n"
734
+
"Its loop logic is defined in `StableDiffusionXLDenoiseLoopWrapper.__call__` method \n"
735
+
"and at each iteration, it runs blocks defined in `blocks` sequencially:\n"
0 commit comments