tensorflow-generative-model-collections
tensorflow-generative-model-collections copied to clipboard
Collection of generative models in Tensorflow
See [here](https://github.com/hwalsuklee/tensorflow-generative-model-collections/blob/master/ops.py#L22), `updates_collections=None` which means `moving_mean` and `moving_var` won't be put into `tf.GraphKeys.UPDATE_OPS`. so [tf.get_collection(tf.GraphKeys.UPDATE_OPS)](https://github.com/hwalsuklee/tensorflow-generative-model-collections/blob/master/GAN.py#L117) is `[]`, I think it's a bug. But if you just delete `updates_collections=None`, it can't...
Any plans for implementing DR-GAN? http://cvlab.cse.msu.edu/project-dr-gan.html
f-GAN
Can you include a code for f-GAN? [[1606.00709] f-GAN: Training Generative Neural Samplers using Variational Divergence Minimization](https://arxiv.org/abs/1606.00709)
Hello @hwalsuklee, thanks for the repo! Would i be a good idea to also add the FID score and/or inception score to the various experiments? Thanks!