Skip to content

Commit e879836

Browse files
Fix typo in pruning guide
PiperOrigin-RevId: 374319179
1 parent d8cc331 commit e879836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_model_optimization/g3doc/guide/pruning/pruning_with_keras.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
"mnist = keras.datasets.mnist\n",
150150
"(train_images, train_labels), (test_images, test_labels) = mnist.load_data()\n",
151151
"\n",
152-
"# Normalize the input image so that each pixel value is between 0 to 1.\n",
152+
"# Normalize the input image so that each pixel value is between 0 and 1.\n",
153153
"train_images = train_images / 255.0\n",
154154
"test_images = test_images / 255.0\n",
155155
"\n",

0 commit comments

Comments
 (0)