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
092c9662
Unverified
Commit
092c9662
authored
Mar 27, 2018
by
Katherine Wu
Committed by
GitHub
Mar 27, 2018
Browse files
(Lint) Fix line 187 (#3782)
parent
587f5792
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
official/wide_deep/wide_deep.py
official/wide_deep/wide_deep.py
+2
-1
No files found.
official/wide_deep/wide_deep.py
View file @
092c9662
...
@@ -184,7 +184,8 @@ def main(argv):
...
@@ -184,7 +184,8 @@ def main(argv):
# Train and evaluate the model every `flags.epochs_between_evals` epochs.
# Train and evaluate the model every `flags.epochs_between_evals` epochs.
def
train_input_fn
():
def
train_input_fn
():
return
input_fn
(
train_file
,
flags
.
epochs_between_evals
,
True
,
flags
.
batch_size
)
return
input_fn
(
train_file
,
flags
.
epochs_between_evals
,
True
,
flags
.
batch_size
)
def
eval_input_fn
():
def
eval_input_fn
():
return
input_fn
(
test_file
,
1
,
False
,
flags
.
batch_size
)
return
input_fn
(
test_file
,
1
,
False
,
flags
.
batch_size
)
...
...
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