Replies: 1 comment
-
Thank you for solution |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
torch versions < 1.11 are apparently no longer available in colab. Therefore, to run the DALL-E notebook, one needs to add the lines of code suggested by digitalShaman immediately after
dec = load_model("https://cdn.openai.com/dall-e/decoder.pkl", dev)
in order to avoid the 'Upsample' object has no attribute 'recompute_scale_factor' error when running
x_stats = dec(z).float()
The suggestion worked for me.
Beta Was this translation helpful? Give feedback.
All reactions