catgan
catgan copied to clipboard
How to run this code?
Sorry!! Got an ImportError: No module named net??
And how to train with my own dataset?
Thanks for the help
I have the same problem with it ,how to solve it??
Thank you for your interest. Actually the line 'import net' is not necessary. Please remove the line 'import net' or download again as I have fixed it.
This program is for MNIST whose dimension of input is 784 (28 *28). Therefore I set l0=L.Linear(784,1000) in catgan_train.py. I think the input size is different from dataset to dataset. To train with your own dataset, you need to set the architecture of the network for your own dataset.
@smayru Thanks! I am more interested in the classification accuracy of the CatGan. How can I compute the accuracy of the CatGan with Chainer?