(pipeline, ddim_scheduler, video_latent, num_inv_steps, prompt="")
| 88 | |
| 89 | @torch.no_grad() |
| 90 | def ddim_inversion(pipeline, ddim_scheduler, video_latent, num_inv_steps, prompt=""): |
| 91 | ddim_latents = ddim_loop(pipeline, ddim_scheduler, video_latent, num_inv_steps, prompt) |
| 92 | return ddim_latents |
| 93 | |
| 94 | def load_weights( |
| 95 | animation_pipeline, |
nothing calls this directly
no test coverage detected