StableDiffusion3Pipeline and ImportError
#44
by
mmxhello
- opened
Hello, in the example code there is StableDiffusion3Pipeline used:
But after updating the transormers library withpip3 install -U diffusers
andpip3 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