You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Started investigating fixing it manually in colab with the following (but a PR with these changes + others needed be much appreciated!). The GPU colab in the readme should always work (idc if the TPU one doesn't, as its harder to maintain).
import issue in app.py: needs to be from stable_diffusion_videos.image_generation import generate_images
jaxlib throws some issue in gpu colab even when we don't touch jax related stuff, due to some import changing and the hardcoded diffusers verison not being compatible. I had to:
pip install jax==0.4.19 jaxlib==0.4.19
realesrgan has issue on import same as this one. I would guess its fixed upstream and we need to pin new version (hoping it doesn't break something else)
The text was updated successfully, but these errors were encountered:
Started investigating fixing it manually in colab with the following (but a PR with these changes + others needed be much appreciated!). The GPU colab in the readme should always work (idc if the TPU one doesn't, as its harder to maintain).
app.py
: needs to befrom stable_diffusion_videos.image_generation import generate_images
diffusers
verison not being compatible. I had to:realesrgan
has issue on import same as this one. I would guess its fixed upstream and we need to pin new version (hoping it doesn't break something else)The text was updated successfully, but these errors were encountered: