diffusers/examples/inference/image_to_image.py

10 lines
243 B
Python
Raw Normal View History

2022-08-30 10:43:42 -06:00
import warnings
2022-08-30 10:43:42 -06:00
from diffusers import StableDiffusionImg2ImgPipeline # noqa F401
2022-08-30 10:43:42 -06:00
warnings.warn(
"The `image_to_image.py` script is outdated. Please use directly `from diffusers import"
" StableDiffusionImg2ImgPipeline` instead."
)