guided-diffusion icon indicating copy to clipboard operation
guided-diffusion copied to clipboard

Latent Space Projection and Interpolation Code

Open hmdolatabadi opened this issue 3 years ago • 3 comments

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.

hmdolatabadi avatar Nov 22 '21 02:11 hmdolatabadi

def slerp_theta(z1, z2, theta): return math.cos(theta) * z1 + math.sin(theta) * z2 3_all

wangqiang9 avatar Jul 04 '22 15:07 wangqiang9