Unverified Commit 092c9662 authored by Katherine Wu's avatar Katherine Wu Committed by GitHub
Browse files

(Lint) Fix line 187 (#3782)

parent 587f5792
...@@ -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)
......
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