Hello.
When running google colab notebook this error is raised on the line from diffusers import DiffusionPipeline, EulerAncestralDiscreteScheduler
The issue is that jax library needs to be downgraded to 0.4.23, so adding the following into the first cell resolves the error
jax==0.4.23 jaxlib==0.4.23
stackoverflow
Should the requirements.txt be patched? I can create an MR.
Hello.
When running google colab notebook this error is raised on the line
from diffusers import DiffusionPipeline, EulerAncestralDiscreteSchedulerThe issue is that jax library needs to be downgraded to
0.4.23, so adding the following into the first cell resolves the errorstackoverflow
Should the
requirements.txtbe patched? I can create an MR.