From 8c94e2f687acbe74c00cd9cce96d427344f10839 Mon Sep 17 00:00:00 2001 From: Vladimir Starostenkov Date: Wed, 2 Oct 2019 19:53:48 +0300 Subject: [PATCH] Remove shuffling for the test dataset (#559) In order to have a good picture with https://projector.tensorflow.org/ --- docs/tutorials/losses_triplet.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/losses_triplet.ipynb b/docs/tutorials/losses_triplet.ipynb index add8e744a6..fbbd69b553 100644 --- a/docs/tutorials/losses_triplet.ipynb +++ b/docs/tutorials/losses_triplet.ipynb @@ -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,