aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/eager/python/examples/gan/README.md
blob: 208a64b05d47eea10b49a1bf967a5453677bfd21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# GAN with TensorFlow eager execution

A simple Generative Adversarial Network (GAN) example using eager execution.
The discriminator and generator networks each contain a few convolution and
fully connected layers.

Other eager execution examples can be found under the parent directory.

##  Content

- `mnist.py`: Model definitions and training routines.
- `mnist_test.py`: Benchmarks for training and using the models using eager
execution.
- `mnist_graph_test.py`: Benchmarks for training and using the models using
graph execution. The same model definitions and loss functions are used in
all benchmarks.


## To run

- Make sure you have installed TensorFlow 1.5+ or the latest `tf-nightly`
or `tf-nightly-gpu` pip package in order to access the eager execution feature.

- Train model. E.g.,

  ```bash
  python mnist.py
  ```
  
  Use `--output_dir=<DIR>` to direct the script to save TensorBoard summaries
  during training. Disabled by default.
  
  Use `--checkpoint_dir=<DIR>` to direct the script to save checkpoints to
  `<DIR>` during training. DIR defaults to /tmp/tensorflow/mnist/checkpoints/.
  The script will load the   latest saved checkpoint from this directory if
  one exists.
  
  Use `-h` for other options.