Closed eitanrich closed 7 years ago
Great tutorial! Thanks.
To run with TensorFlow version 1.2, I had to change:
kl = tf.reduce_sum(distributions.kl(q_z.distribution, p_z), 1)
to
kl = tf.reduce_sum(distributions.kl_divergence(q_z.distribution, p_z), 1)
Eitan
Thanks Eitan!! Fixed :)
Great tutorial! Thanks.
To run with TensorFlow version 1.2, I had to change:
to
Eitan