wyhsirius / LIA

[ICLR 22, TPAMI 24] Latent Image Animator
https://wyhsirius.github.io/LIA-project/
Other
585 stars 63 forks source link

Why do we need to repeat the latent variable 14 times? #23

Open liutaocode opened 11 months ago

liutaocode commented 11 months ago

Thanks for your excellent work. I have a question.

Why do we need to repeat the latent variable (latent = latent.reshape((latent.shape[0], -1)).unsqueeze(1).repeat(1, inject_index, 1)) by repeating it 14 times? Why not use the latent variable (1, 512) directly as the input for all subsequent networks? I think repeating does not add new information here. Could you explain the reason here?

Thanks.