Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
b87f5a07
Unverified
Commit
b87f5a07
authored
Apr 11, 2018
by
Franck Verrot
Committed by
GitHub
Apr 11, 2018
Browse files
Correct a small typo
This commit changes a tiny typo in the Eager Execution notebook.
parent
2c74e416
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
samples/core/get_started/eager.ipynb
samples/core/get_started/eager.ipynb
+1
-1
No files found.
samples/core/get_started/eager.ipynb
View file @
b87f5a07
...
...
@@ -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 func
i
tion 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"
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment