Upload folder using huggingface_hub
Browse files
main/pipeline_stable_diffusion_xl_controlnet_adapter_inpaint.py
CHANGED
@@ -33,7 +33,6 @@ from diffusers import DiffusionPipeline
|
|
33 |
from diffusers.image_processor import PipelineImageInput, VaeImageProcessor
|
34 |
from diffusers.loaders import (
|
35 |
FromSingleFileMixin,
|
36 |
-
StableDiffusionLoraLoaderMixin,
|
37 |
StableDiffusionXLLoraLoaderMixin,
|
38 |
TextualInversionLoaderMixin,
|
39 |
)
|
@@ -300,7 +299,7 @@ def rescale_noise_cfg(noise_cfg, noise_pred_text, guidance_rescale=0.0):
|
|
300 |
|
301 |
|
302 |
class StableDiffusionXLControlNetAdapterInpaintPipeline(
|
303 |
-
DiffusionPipeline, StableDiffusionMixin, FromSingleFileMixin,
|
304 |
):
|
305 |
r"""
|
306 |
Pipeline for text-to-image generation using Stable Diffusion augmented with T2I-Adapter
|
|
|
33 |
from diffusers.image_processor import PipelineImageInput, VaeImageProcessor
|
34 |
from diffusers.loaders import (
|
35 |
FromSingleFileMixin,
|
|
|
36 |
StableDiffusionXLLoraLoaderMixin,
|
37 |
TextualInversionLoaderMixin,
|
38 |
)
|
|
|
299 |
|
300 |
|
301 |
class StableDiffusionXLControlNetAdapterInpaintPipeline(
|
302 |
+
DiffusionPipeline, StableDiffusionMixin, FromSingleFileMixin, StableDiffusionXLLoraLoaderMixin
|
303 |
):
|
304 |
r"""
|
305 |
Pipeline for text-to-image generation using Stable Diffusion augmented with T2I-Adapter
|