-
Couldn't load subscription status.
- Fork 6.4k
Add PAG Support for Stable Diffusion Inpaint Pipeline #9386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 21 commits
f367d36
b16afb0
7c939f7
fdf2a59
4250a54
102baf7
ac471dc
7fc3daa
98ec6d8
41f9612
cd644f2
0989a8c
b933ea3
784df80
5bce578
22cabea
f9d3d1b
2019d56
769d650
68b7365
ef4c4cd
921a8fc
22f5460
7aa3914
7821157
814b4f0
e8cd4de
de5ef07
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,6 +33,8 @@ | |
| _import_structure["pipeline_pag_sd_3"] = ["StableDiffusion3PAGPipeline"] | ||
| _import_structure["pipeline_pag_sd_animatediff"] = ["AnimateDiffPAGPipeline"] | ||
| _import_structure["pipeline_pag_sd_img2img"] = ["StableDiffusionPAGImg2ImgPipeline"] | ||
| _import_structure["pipeline_pag_sd_inpaint"] = ["StableDiffusionPAGInpaintPipeline"] | ||
|
|
||
| _import_structure["pipeline_pag_sd_xl"] = ["StableDiffusionXLPAGPipeline"] | ||
| _import_structure["pipeline_pag_sd_xl_img2img"] = ["StableDiffusionXLPAGImg2ImgPipeline"] | ||
| _import_structure["pipeline_pag_sd_xl_inpaint"] = ["StableDiffusionXLPAGInpaintPipeline"] | ||
|
|
@@ -56,6 +58,7 @@ | |
| from .pipeline_pag_sd_3 import StableDiffusion3PAGPipeline | ||
| from .pipeline_pag_sd_animatediff import AnimateDiffPAGPipeline | ||
| from .pipeline_pag_sd_img2img import StableDiffusionPAGImg2ImgPipeline | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also need to add pag sd inpaint here too -currently CI fail for some import error There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
| from .pipeline_pag_sd_inpaint import StableDiffusionPAGInpaintPipeline | ||
| from .pipeline_pag_sd_xl import StableDiffusionXLPAGPipeline | ||
| from .pipeline_pag_sd_xl_img2img import StableDiffusionXLPAGImg2ImgPipeline | ||
| from .pipeline_pag_sd_xl_inpaint import StableDiffusionXLPAGInpaintPipeline | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this a merge conflict? can yo uadd this line back?