Skip to content

Commit

Permalink
Correct a small typo
Browse files Browse the repository at this point in the history
This commit changes a tiny typo in the Eager Execution notebook.
  • Loading branch information
franckverrot authored Apr 12, 2018
1 parent 2c74e41 commit b87f5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/core/get_started/eager.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@
"\n",
"test_dataset = tf.data.TextLineDataset(test_fp)\n",
"test_dataset = test_dataset.skip(1) # skip header row\n",
"test_dataset = test_dataset.map(parse_csv) # parse each row with the funcition created earlier\n",
"test_dataset = test_dataset.map(parse_csv) # parse each row with the function created earlier\n",
"test_dataset = test_dataset.shuffle(1000) # randomize\n",
"test_dataset = test_dataset.batch(32) # use the same batch size as the training set"
],
Expand Down

0 comments on commit b87f5a0

Please sign in to comment.