Home

Awesome

#Generative Moment Matching Networks (GMMNs) This is the code we used for the following paper:

If you use this code in your research you should cite the above paper.

Dependencies

To use the code you need to install some dependencies first:

Once you get all dependencies ready, try to run python test.py. If you are running this with npmat then all tests should pass. If you are running this on a GPU with cudamat then some tests will fail - this is expected because of the low numeric precision supported by cudamat (float32 every where), but all tests should run and finish properly.

Prepare data

Prepare the MNIST and TFD data, then go into the dataio directory, change paths to the datasets in mnist.py and tfd.py.

Train the models

Use python train.py -m <mode> to train the corresponding model. <mode> can be mnistinput, mnistcode, tfdinput, tfdcode, corresponding to the input space model and autoencoder code space model for the two datasets.

Other resources

There is a tensorflow implementation of GMMN provided by Siddharth Agrawal: https://github.com/siddharth-agrawal/Generative-Moment-Matching-Networks