guided-diffusion
guided-diffusion copied to clipboard
Latent Space Projection and Interpolation Code
Hi.
Thanks for releasing the code for your interesting paper. I looked into the repo, but couldn't find the latent space projection and interpolation code for Figure 10 results. Can you please provide the code?
Thanks.
def slerp_theta(z1, z2, theta): return math.cos(theta) * z1 + math.sin(theta) * z2
