fix bugs of image-to-video without image-condition

This commit is contained in:
Zheng Guang Cong 2024-12-06 20:14:43 +08:00 committed by GitHub
parent 5aa6d3a9ee
commit a46d762cd9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1283,7 +1283,7 @@ def main(args):
image_noise_sigma = torch.normal(mean=-3.0, std=0.5, size=(1,), device=image.device)
image_noise_sigma = torch.exp(image_noise_sigma).to(dtype=image.dtype)
noisy_image = torch.randn_like(image) * image_noise_sigma[:, None, None, None, None]
noisy_image = image + torch.randn_like(image) * image_noise_sigma[:, None, None, None, None]
image_latent_dist = vae.encode(noisy_image).latent_dist
return latent_dist, image_latent_dist