yunjey
Committed by GitHub

Update README.md

......@@ -9,34 +9,34 @@ TensorFlow implementation of [Unsupervised Cross-Domain Image Generation.](https
## Usage
#### Clone the repository
Clone the repository
```bash
git clone https://github.com/yunjey/dtn-tensorflow.git
cd dtn-tensorflow
```
#### Download the dataset
Download the dataset
```bash
chmod +x download.sh
./download.sh
```
#### Resize MNIST dataset to 32x32
Resize MNIST dataset to 32x32
```bash
python prepro.py
```
#### Pretrain the model f
Pretrain the model f
```bash
python main.py --mode='pretrain'
```
#### Train the model G and D
Train the model G and D
```bash
python main.py --mode='train'
```
#### Transfer SVHN to MNIST
Transfer SVHN to MNIST
```bash
python main.py --mode='eval'
```
......