"docs/vscode:/vscode.git/clone" did not exist on "074e12358bc17e7dbe111ea4f62f05dbae8a49d5"
Unverified Commit ef727e2d authored by Jon Shlens's avatar Jon Shlens Committed by GitHub
Browse files

Merge pull request #4577 from Hospitalization/train_test

Fix too much big value of default max_steps of 2560 epoch to 256 epoch
parents d1b91ba9 14b8b6f1
...@@ -48,7 +48,7 @@ FLAGS = tf.app.flags.FLAGS ...@@ -48,7 +48,7 @@ FLAGS = tf.app.flags.FLAGS
tf.app.flags.DEFINE_string('train_dir', '/tmp/cifar10_train', tf.app.flags.DEFINE_string('train_dir', '/tmp/cifar10_train',
"""Directory where to write event logs """ """Directory where to write event logs """
"""and checkpoint.""") """and checkpoint.""")
tf.app.flags.DEFINE_integer('max_steps', 1000000, tf.app.flags.DEFINE_integer('max_steps', 100000,
"""Number of batches to run.""") """Number of batches to run.""")
tf.app.flags.DEFINE_boolean('log_device_placement', False, tf.app.flags.DEFINE_boolean('log_device_placement', False,
"""Whether to log device placement.""") """Whether to log device placement.""")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment