Skip to content

Commit f04e305

Browse files
committed
Remove comment that is no longer relevant
1 parent c68e3e9 commit f04e305

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

site/en/tutorials/images/transfer_learning.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,6 @@
10491049
"# Retrieve a batch of images from the test set\n",
10501050
"image_batch, label_batch = test_dataset.as_numpy_iterator().next()\n",
10511051
"predictions = model.predict_on_batch(image_batch).flatten()\n",
1052-
"# Apply a sigmoid since our model returns logits\n",
10531052
"predictions = tf.where(predictions < 0.5, 0, 1)\n",
10541053
"\n",
10551054
"print('Predictions:\\n', predictions.numpy())\n",

0 commit comments

Comments
 (0)