Unverified Commit cde1693e authored by Wolff Dobson's avatar Wolff Dobson Committed by GitHub
Browse files

Merge pull request #4945 from tensorflow/MarkDaoust-patch-2

Update overfit_and_underfit.ipynb
parents d0fadb20 4d4eb6c9
...@@ -294,7 +294,7 @@ ...@@ -294,7 +294,7 @@
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
"baseline_model = keras.Sequential([\n", "baseline_model = keras.Sequential([\n",
" # `input_shape` is only required here so that `.summary` works. \n" " # `input_shape` is only required here so that `.summary` works. \n",
" keras.layers.Dense(16, activation=tf.nn.relu, input_shape=(NUM_WORDS,)),\n", " keras.layers.Dense(16, activation=tf.nn.relu, input_shape=(NUM_WORDS,)),\n",
" keras.layers.Dense(16, activation=tf.nn.relu),\n", " keras.layers.Dense(16, activation=tf.nn.relu),\n",
" keras.layers.Dense(1, activation=tf.nn.sigmoid)\n", " keras.layers.Dense(1, activation=tf.nn.sigmoid)\n",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment