-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
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
got an unexpected keyword argument eta
#18
Comments
Hi @wyf0912, I encountered the same issue. Have you by any chance figured out a fix for it? Thanks! |
@patrickvonplaten Can you take a look at this? This seems to be a diffusers issue. Thanks! |
Sure! @wyf0912, @oliverow could you try to update your diffusers version?
I've tested: from diffusers import DDIMPipeline
model_id = "google/ddpm-cifar10-32"
# load model and scheduler
ddim = DDIMPipeline.from_pretrained(model_id)
# run pipeline in inference (sample random noise and denoise)
image = ddim(num_inference_steps=50).images[0]
# save image
image.save("ddim_generated_image.png") and it works as expected with: import diffusers; print(diffusers.__verison__) # 0.11.1 |
Dear all, thanks a lot for your reply.
|
I see! Sorry, I just noticed that the fix didn't make it into the last release: huggingface/diffusers#1932 Could you try to do:
And try again. We'll do a release next week so that you won't have to install from "main" anymore then. Sorry about this! |
Thanks for sharing the code!
While I get the following error when I run the demo code of the diffusers.
The text was updated successfully, but these errors were encountered: