Skip to content

Commit

Permalink
Minor error
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeMalcolm committed Feb 4, 2021
1 parent 497cd29 commit 936351c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 05a - Deep Neural Networks (PyTorch).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"penguins['BodyMass'] = penguins['BodyMass']/100\n",
"\n",
"# The dataset is too small to be useful for deep learning\n",
"# So we'll oversample it to triple its size\n",
"# So we'll oversample it to increase its size\n",
"for i in range(1,3):\n",
" penguins = penguins.append(penguins)\n",
"\n",
Expand Down Expand Up @@ -516,4 +516,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
4 changes: 2 additions & 2 deletions 05a - Deep Neural Networks (TensorFlow).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"penguins['BodyMass'] = penguins['BodyMass']/100\n",
"\n",
"# The dataset is too small to be useful for deep learning\n",
"# So we'll oversample it to triple its size\n",
"# So we'll oversample it to increase its size\n",
"for i in range(1,3):\n",
" penguins = penguins.append(penguins)\n",
"\n",
Expand Down Expand Up @@ -436,4 +436,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}

0 comments on commit 936351c

Please sign in to comment.