aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/kfac/examples/mlp_mnist_main.py
blob: 9c34ade1d2018135b3636fddb9dcc65839cd59de (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
r"""Train an MLP on MNIST using K-FAC.

See mlp.py for details.
"""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import argparse
import sys

import tensorflow as tf

from tensorflow.contrib.kfac.examples import mlp

FLAGS = None


def main(argv):
  _ = argv
  if FLAGS.use_estimator:
    if FLAGS.num_towers != 1:
      raise ValueError("Only 1 device supported in tf.estimator example.")
    mlp.train_mnist_estimator(FLAGS.data_dir, num_epochs=200)
  elif FLAGS.num_towers > 1:
    mlp.train_mnist_multitower(
        FLAGS.data_dir, num_epochs=200, num_towers=FLAGS.num_towers)
  else:
    mlp.train_mnist(FLAGS.data_dir, num_epochs=200)


if __name__ == "__main__":
  parser = argparse.ArgumentParser()
  parser.add_argument(
      "--data_dir",
      type=str,
      default="/tmp/mnist",
      help="Directory to store dataset in.")
  parser.add_argument(
      "--num_towers",
      type=int,
      default=1,
      help="Number of CPUs to split minibatch across.")
  parser.add_argument(
      "--use_estimator",
      action="store_true",
      help="Use tf.estimator API to train.")
  FLAGS, unparsed = parser.parse_known_args()
  tf.app.run(main=main, argv=[sys.argv[0]] + unparsed)