Skip to content

Commit fa9eb2b

Browse files
Merge pull request MicrosoftDocs#33 from callezenwaka/patch-5
Update 05c - Transfer Learning (Tensorflow).ipynb
2 parents fb71635 + 8f1715f commit fa9eb2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

05c - Transfer Learning (Tensorflow).ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"\n",
8484
"The pretrained model has many layers, starting with a convolutional layer that starts the feature extraction process from image data.\n",
8585
"\n",
86-
"For feature extraction to work with our own images, we need to ensure that the image data we use the train our prediction layer has the same number of features (pixel values) as the images originally used to train the feature extraction layers, so we need data loaders for color images that are 224x224 pixels in size.\n",
86+
"For feature extraction to work with our own images, we need to ensure that the image data we use to train our prediction layer has the same number of features (pixel values) as the images originally used to train the feature extraction layers, so we need data loaders for color images that are 224x224 pixels in size.\n",
8787
"\n",
8888
"Tensorflow includes functions for loading and transforming data. We'll use these to create a generator for training data, and a second generator for test data (which we'll use to validate the trained model). The loaders will transform the image data to match the format used to train the original resnet CNN model and normalize them.\n",
8989
"\n",
@@ -387,4 +387,4 @@
387387
},
388388
"nbformat": 4,
389389
"nbformat_minor": 2
390-
}
390+
}

0 commit comments

Comments
 (0)