Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
"# The dataset is too small to be useful for deep learning\r\n",
"# So we'll oversample it to increase its size\r\n",
"for i in range(1,3):\r\n",
" penguins = penguins.append(penguins)\r\n",
" penguins = pd.concat([penguins, penguins], ignore_index=True)\r\n",
"\r\n",
"# Display a random sample of 10 observations\r\n",
"sample = penguins.sample(10)\r\n",
Expand Down Expand Up @@ -436,4 +436,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}