(self, ddim_latents, clip_emb_im=None, ref_images_pil=None, pose_cond_fea=None)
| 51 | return all_latent |
| 52 | |
| 53 | def invert(self, ddim_latents, clip_emb_im=None, ref_images_pil=None, pose_cond_fea=None): |
| 54 | self.init_emb_img(clip_emb_im=clip_emb_im) |
| 55 | ddim_latents = self.ddim_loop(ddim_latents, ref_images_pil=ref_images_pil, pose_cond_fea=pose_cond_fea) |
| 56 | return ddim_latents |
nothing calls this directly
no test coverage detected