"tests/test_runtime/test_config.py" did not exist on "148fea12e00a3f460cfeadd719100701ca63e5ff"
Unverified Commit b87f5a07 authored by Franck Verrot's avatar Franck Verrot Committed by GitHub
Browse files

Correct a small typo

This commit changes a tiny typo in the Eager Execution notebook.
parent 2c74e416
......@@ -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"
],
......
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