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
Hi @cvignac ,
I'm unclear about the sampling part in the code base.
Like the add_noise step here
add_noise
I'm wondering if there is a prev_sample while performing reverse process?
prev_sample
for k in self.noise_scheduler.timesteps: # predict noise # inverse diffusion step (remove noise) noise_pred = ema_nets['noise_pred_net']( sample=naction, timestep=k, global_cond=obs_cond ) # inverse diffusion step (remove noise) naction = self.noise_scheduler.step( model_output=noise_pred, timestep=k, sample=naction ).prev_sample
Any pointers are helpful
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @cvignac ,
I'm unclear about the sampling part in the code base.
Like the
add_noise
step hereI'm wondering if there is a
prev_sample
while performing reverse process?Any pointers are helpful
Thanks!
The text was updated successfully, but these errors were encountered: