Skip to content

Commit cde1693

Browse files
authored
Merge pull request tensorflow#4945 from tensorflow/MarkDaoust-patch-2
Update overfit_and_underfit.ipynb
2 parents d0fadb2 + 4d4eb6c commit cde1693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/core/tutorials/keras/overfit_and_underfit.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@
294294
"cell_type": "code",
295295
"source": [
296296
"baseline_model = keras.Sequential([\n",
297-
" # `input_shape` is only required here so that `.summary` works. \n"
297+
" # `input_shape` is only required here so that `.summary` works. \n",
298298
" keras.layers.Dense(16, activation=tf.nn.relu, input_shape=(NUM_WORDS,)),\n",
299299
" keras.layers.Dense(16, activation=tf.nn.relu),\n",
300300
" keras.layers.Dense(1, activation=tf.nn.sigmoid)\n",

0 commit comments

Comments
 (0)