FactorVAE
FactorVAE copied to clipboard
A implementation of FactorVAE from the paper Disentangling by Factorising, Kim & Mnih 2018 (https://arxiv.org/pdf/1802.05983.pdf )
Results
2
FactorVAE issues
Sort by
recently updated
recently updated
newest added
The the paper:"Disentangling by Factorising motivate", tc_regulariser should have minus before it, but in the code, the minus symbol seems lost.
` KL_divergence = 0.5 * tf.reduce_mean(tf.reduce_sum(tf.exp(self.enc_logvar) - self.enc_logvar + self.enc_mean**2,axis=1) - self.z_dim) ` Thanks for your code, but i meet a problem for your code, In line 137, why need...