Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion official/wide_deep/wide_deep.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ def main(argv):

# Train and evaluate the model every `flags.epochs_between_evals` epochs.
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():
return input_fn(test_file, 1, False, flags.batch_size)
Expand Down