Skip to content

Commit

Permalink
Merge pull request #2237 from juelg:activation-functions
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 549024139
  • Loading branch information
copybara-github committed Jul 18, 2023
2 parents 5432443 + d1e99f9 commit 3b8eeee
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions site/en/tutorials/load_data/csv.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
"outputs": [],
"source": [
"abalone_model = tf.keras.Sequential([\n",
" layers.Dense(64),\n",
" layers.Dense(64, activation='relu'),\n",
" layers.Dense(1)\n",
"])\n",
"\n",
Expand Down Expand Up @@ -337,7 +337,7 @@
"source": [
"norm_abalone_model = tf.keras.Sequential([\n",
" normalize,\n",
" layers.Dense(64),\n",
" layers.Dense(64, activation='relu'),\n",
" layers.Dense(1)\n",
"])\n",
"\n",
Expand Down Expand Up @@ -646,7 +646,7 @@
"source": [
"def titanic_model(preprocessing_head, inputs):\n",
" body = tf.keras.Sequential([\n",
" layers.Dense(64),\n",
" layers.Dense(64, activation='relu'),\n",
" layers.Dense(1)\n",
" ])\n",
"\n",
Expand Down Expand Up @@ -1868,7 +1868,6 @@
"metadata": {
"colab": {
"name": "csv.ipynb",
"provenance": [],
"toc_visible": true
},
"kernelspec": {
Expand Down

0 comments on commit 3b8eeee

Please sign in to comment.