Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
diffusers
Commits
24bdf4b2
Unverified
Commit
24bdf4b2
authored
Jun 12, 2024
by
Beinsezii
Committed by
GitHub
Jun 12, 2024
Browse files
Add SD3 AutoPipeline mappings (#8489)
parent
95e0c375
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/diffusers/pipelines/auto_pipeline.py
src/diffusers/pipelines/auto_pipeline.py
+6
-0
No files found.
src/diffusers/pipelines/auto_pipeline.py
View file @
24bdf4b2
...
...
@@ -52,6 +52,10 @@ from .stable_diffusion import (
StableDiffusionInpaintPipeline
,
StableDiffusionPipeline
,
)
from
.stable_diffusion_3
import
(
StableDiffusion3Img2ImgPipeline
,
StableDiffusion3Pipeline
,
)
from
.stable_diffusion_xl
import
(
StableDiffusionXLImg2ImgPipeline
,
StableDiffusionXLInpaintPipeline
,
...
...
@@ -64,6 +68,7 @@ AUTO_TEXT2IMAGE_PIPELINES_MAPPING = OrderedDict(
[
(
"stable-diffusion"
,
StableDiffusionPipeline
),
(
"stable-diffusion-xl"
,
StableDiffusionXLPipeline
),
(
"stable-diffusion-3"
,
StableDiffusion3Pipeline
),
(
"if"
,
IFPipeline
),
(
"kandinsky"
,
KandinskyCombinedPipeline
),
(
"kandinsky22"
,
KandinskyV22CombinedPipeline
),
...
...
@@ -82,6 +87,7 @@ AUTO_IMAGE2IMAGE_PIPELINES_MAPPING = OrderedDict(
[
(
"stable-diffusion"
,
StableDiffusionImg2ImgPipeline
),
(
"stable-diffusion-xl"
,
StableDiffusionXLImg2ImgPipeline
),
(
"stable-diffusion-3"
,
StableDiffusion3Img2ImgPipeline
),
(
"if"
,
IFImg2ImgPipeline
),
(
"kandinsky"
,
KandinskyImg2ImgCombinedPipeline
),
(
"kandinsky22"
,
KandinskyV22Img2ImgCombinedPipeline
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment