kefirski / pytorch_RVAE

Recurrent Variational Autoencoder that generates sequential data implemented with pytorch
MIT License
357 stars 87 forks source link

About the loss formula #4

Closed xushenkun closed 7 years ago

xushenkun commented 7 years ago

In rvae.py "loss = 79 cross_entropy + kld_coef(i) kld". Could you please explain why it is multiplied by 79 and what's the meaning of kld_coef(i)?

kefirski commented 7 years ago

Here you can find meaning of 79

xushenkun commented 7 years ago

@kefirski Thanks!