image_to_image.py 243 Bytes
Newer Older
1
import warnings
2

3
from diffusers import StableDiffusionImg2ImgPipeline  # noqa F401
4
5


6
7
8
9
warnings.warn(
    "The `image_to_image.py` script is outdated. Please use directly `from diffusers import"
    " StableDiffusionImg2ImgPipeline` instead."
)