"...llama_inference_pytorch.git" did not exist on "b856c4eccabf913859ddeda39e4dbce78b84b41e"
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 @@ ...@@ -766,7 +766,7 @@
"\n", "\n",
"test_dataset = tf.data.TextLineDataset(test_fp)\n", "test_dataset = tf.data.TextLineDataset(test_fp)\n",
"test_dataset = test_dataset.skip(1) # skip header row\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.shuffle(1000) # randomize\n",
"test_dataset = test_dataset.batch(32) # use the same batch size as the training set" "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