We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I train DALLE in colab code that published by this page.
But I don't know that this runtime error occured..
please help me
The text was updated successfully, but these errors were encountered:
This is because your images are in the RGBA format. You need to convert them to RGB format. PyImage can help do that.
img = Image.open(filename) new_image = Image.new("RGBA", img.size, "WHITE") # Create a white rgba background new_image.paste(img, (0, 0), img) # Paste the image on the background. new_image.convert('RGB').save(newfilename)
Sorry, something went wrong.
@yundaehyuck Hi! Try pulling the latest and rerunning 4fa1082 , should take care of it for you!
@lucidrains Thanks a lot! Maybe it works for me. Once the error occurs, I will ask you again.
No branches or pull requests
I train DALLE in colab code that published by this page.
But I don't know that this runtime error occured..
please help me
The text was updated successfully, but these errors were encountered: