Skip to content

Commit c809c98

Browse files
committed
Fix typos
1 parent e1ec8b7 commit c809c98

2 files changed

+2
-1
lines changed

chapter08_intro-to-dl-for-computer-vision.ipynb

+1
Original file line numberDiff line numberDiff line change
@@ -1063,6 +1063,7 @@
10631063
"\n",
10641064
"inputs = keras.Input(shape=(180, 180, 3))\n",
10651065
"x = data_augmentation(inputs)\n",
1066+
"x = keras.applications.vgg16.preprocess_input(x)\n",
10661067
"x = conv_base(x)\n",
10671068
"x = layers.Flatten()(x)\n",
10681069
"x = layers.Dense(256)(x)\n",

chapter09_part01_image-segmentation.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
" x = layers.Conv2DTranspose(64, 3, activation=\"relu\", padding=\"same\")(x)\n",
174174
" x = layers.Conv2DTranspose(64, 3, activation=\"relu\", padding=\"same\", strides=2)(x)\n",
175175
"\n",
176-
" outputs = layers.Conv2D(3, num_classes, activation=\"softmax\", padding=\"same\")(x)\n",
176+
" outputs = layers.Conv2D(num_classes, 3, activation=\"softmax\", padding=\"same\")(x)\n",
177177
"\n",
178178
" model = keras.Model(inputs, outputs)\n",
179179
" return model\n",

0 commit comments

Comments
 (0)