-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(diffusers/pag): 0.3.0-dev, complete pag pipelines
- Loading branch information
Showing
7 changed files
with
8,004 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
from typing import TYPE_CHECKING | ||
|
||
from ...utils import _LazyModule | ||
|
||
_import_structure = {} | ||
|
||
_import_structure["pipeline_pag_controlnet_sd_xl"] = ["StableDiffusionXLControlNetPAGPipeline"] | ||
_import_structure["pipeline_pag_hunyuandit"] = ["HunyuanDiTPAGPipeline"] | ||
_import_structure["pipeline_pag_kolors"] = ["KolorsPAGPipeline"] | ||
_import_structure["pipeline_pag_pixart_sigma"] = ["PixArtSigmaPAGPipeline"] | ||
_import_structure["pipeline_pag_sd"] = ["StableDiffusionPAGPipeline"] | ||
_import_structure["pipeline_pag_sd_3"] = ["StableDiffusion3PAGPipeline"] | ||
_import_structure["pipeline_pag_sd_animatediff"] = ["AnimateDiffPAGPipeline"] | ||
_import_structure["pipeline_pag_sd_xl"] = ["StableDiffusionXLPAGPipeline"] | ||
_import_structure["pipeline_pag_sd_xl_img2img"] = ["StableDiffusionXLPAGImg2ImgPipeline"] | ||
_import_structure["pipeline_pag_sd_xl_inpaint"] = ["StableDiffusionXLPAGInpaintPipeline"] | ||
|
||
if TYPE_CHECKING: | ||
from .pipeline_pag_controlnet_sd import StableDiffusionControlNetPAGPipeline | ||
from .pipeline_pag_controlnet_sd_xl import StableDiffusionXLControlNetPAGPipeline | ||
from .pipeline_pag_pixart_sigma import PixArtSigmaPAGPipeline | ||
from .pipeline_pag_sd_xl import StableDiffusionXLPAGPipeline | ||
from .pipeline_pag_sd_xl_img2img import StableDiffusionXLPAGImg2ImgPipeline | ||
from .pipeline_pag_sd_xl_inpaint import StableDiffusionXLPAGInpaintPipeline | ||
|
||
else: | ||
import sys | ||
|
||
sys.modules[__name__] = _LazyModule( | ||
__name__, | ||
globals()["__file__"], | ||
_import_structure, | ||
module_spec=__spec__, | ||
) |
1,262 changes: 1,262 additions & 0 deletions
1,262
mindone/diffusers/pipelines/pag/pipeline_pag_controlnet_sd.py
Large diffs are not rendered by default.
Oops, something went wrong.
1,520 changes: 1,520 additions & 0 deletions
1,520
mindone/diffusers/pipelines/pag/pipeline_pag_controlnet_sd_xl.py
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.