StableDiffusion3Pipeline and ImportError

#44
by mmxhello - opened

Hello, in the example code there is StableDiffusion3Pipeline used:
image.png

But after updating the transormers library with
pip3 install -U diffusers
and
pip3 install git+https://github.com/huggingface/diffusers.git
the code still crashes with an error "ImportError: cannot import name 'StableDiffusion3Pipeline' from 'diffusers'".

The solution worked for me is to replace StableDiffusion3Pipeline with StableDiffusionPipeline.

Maybe I am doing something wrong? Or the example is incorrect

Sign up or log in to comment