Skip to content

Commit

Permalink
Remove shuffling for the test dataset (#559)
Browse files Browse the repository at this point in the history
In order to have a good picture with https://projector.tensorflow.org/
  • Loading branch information
VladimirStarostenkov authored and seanpmorgan committed Oct 2, 2019
1 parent 813e88d commit 8c94e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/losses_triplet.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
"train_dataset = train_dataset.shuffle(1024).batch(32)\n",
"train_dataset = train_dataset.map(_normalize_img)\n",
"\n",
"test_dataset = test_dataset.shuffle(1024).batch(32)\n",
"test_dataset = test_dataset.batch(32)\n",
"test_dataset = test_dataset.map(_normalize_img)"
],
"execution_count": 0,
Expand Down

0 comments on commit 8c94e2f

Please sign in to comment.