From 64d35231af2846c66c03f6611cd12f3b42cb6ed6 Mon Sep 17 00:00:00 2001 From: Soumith Chintala Date: Mon, 30 Jan 2017 19:59:17 +0530 Subject: [PATCH] readme --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..98b607a --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +Wasserstein GAN +=============== + +Code accompanying the paper ["Wasserstein GAN"](https://arxiv.org/abs/1701.07875) + +##Prerequisites + +- Computer with Linux or OSX +- [PyTorch](http://pytorch.org) +- For training, an NVIDIA GPU is strongly recommended for speed. CPU is supported but training is very slow. + + +##Reproducing LSUN experiments + +**With DCGAN:** + +```python +python main.py --dataset lsun --dataroot [lsun-train-folder] --cuda +``` + +**With MLP:** + +```python +python main.py --mlp_G --ngf 512 +``` + +More improved README in the works.