unrolled_gan
unrolled_gan copied to clipboard
Unrolled Generative Adversarial Networks
Hi, I try to run the code on tf=1.15 but I get an error in the construct model and training ops section code: `tf.reset_default_graph() data = sample_mog(params['batch_size']) noise = ds.Normal(tf.zeros(params['z_dim']),...
Is there any way to migrate this code to TensorFlow 2.0+? It seems like in V2 we no longer have access to the graph_replace function. Also, in V2's keras implementation,...
Hi, I noticed the first mixture has a higher density mass. I think this is due to the line: `thetas = np.linspace(0, 2 * np.pi, n_mixture)` which includes that location...
Hi. I have read your paper. And in equation(12), on the right hand of the equation, the second term, I don't see that in your code. How do you implement...