You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In run_tokenflow_pnp.py, why using "noisy_latents = self.scheduler.add_noise(self.latents, self.eps, self.scheduler.timesteps[0])" line257 before "edited_frames = self.sample_loop(noisy_latents, torch.arange(self.config["n_frames"]))" line 258.
It seems directly using "edited_frames = self.sample_loop(noisy_latents, torch.arange(self.config["n_frames"]))" is fine since it starts at timestamp 0. And the pnp-diffusers (https://github.com/MichalGeyer/pnp-diffusers, which this project may refer) just use "edited_img = self.sample_loop(self.eps)".
The text was updated successfully, but these errors were encountered:
Thanks for your owesome work.
In run_tokenflow_pnp.py, why using "noisy_latents = self.scheduler.add_noise(self.latents, self.eps, self.scheduler.timesteps[0])" line257 before "edited_frames = self.sample_loop(noisy_latents, torch.arange(self.config["n_frames"]))" line 258.
It seems directly using "edited_frames = self.sample_loop(noisy_latents, torch.arange(self.config["n_frames"]))" is fine since it starts at timestamp 0. And the pnp-diffusers (https://github.com/MichalGeyer/pnp-diffusers, which this project may refer) just use "edited_img = self.sample_loop(self.eps)".
The text was updated successfully, but these errors were encountered: