Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
14b8b6f1
Commit
14b8b6f1
authored
Jun 19, 2018
by
hospitalization
Browse files
Fix too much value of default max_steps of 2560 epoch to 256 epoch
parent
d1b91ba9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tutorials/image/cifar10/cifar10_train.py
tutorials/image/cifar10/cifar10_train.py
+1
-1
No files found.
tutorials/image/cifar10/cifar10_train.py
View file @
14b8b6f1
...
...
@@ -48,7 +48,7 @@ FLAGS = tf.app.flags.FLAGS
tf
.
app
.
flags
.
DEFINE_string
(
'train_dir'
,
'/tmp/cifar10_train'
,
"""Directory where to write event logs """
"""and checkpoint."""
)
tf
.
app
.
flags
.
DEFINE_integer
(
'max_steps'
,
100000
0
,
tf
.
app
.
flags
.
DEFINE_integer
(
'max_steps'
,
100000
,
"""Number of batches to run."""
)
tf
.
app
.
flags
.
DEFINE_boolean
(
'log_device_placement'
,
False
,
"""Whether to log device placement."""
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment