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
@johnowhitaker in the Stable Diffusion Deep Dive.ipynb notebook, section The UNET and CFG.
You get latents_x0 because the scheduler exposes pred_original_sample
latents_x0
pred_original_sample
latents_x0 = scheduler.step(noise_pred, t, latents).pred_original_sample # Using the scheduler (Diffusers 0.4 and above)
How to get this pred_original_sample when using PNDMScheduler? As this scheduler does not expose this value.
PNDMScheduler
The text was updated successfully, but these errors were encountered:
I edited some schedulers to expose that a while back, I'll see how easy it is to do the same for PNDMScheduler, but that could take a while :)
Sorry, something went wrong.
johnowhitaker
No branches or pull requests
@johnowhitaker in the Stable Diffusion Deep Dive.ipynb notebook, section The UNET and CFG.
You get
latents_x0
because the scheduler exposespred_original_sample
How to get this
pred_original_sample
when usingPNDMScheduler
? As this scheduler does not expose this value.The text was updated successfully, but these errors were encountered: