Skip to content

Commit

Permalink
Amelie = Adelie
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeMalcolm committed Mar 9, 2021
1 parent fa9eb2b commit 614a3f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 03 - Classification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@
},
"outputs": [],
"source": [
"penguin_classes = ['Amelie', 'Gentoo', 'Chinstrap']\n",
"penguin_classes = ['Adelie', 'Gentoo', 'Chinstrap']\n",
"print(sample.columns[0:5].values, 'SpeciesName')\n",
"for index, row in penguins.sample(10).iterrows():\n",
" print('[',row[0], row[1], row[2], row[3], int(row[4]),']',penguin_classes[int(row[4])])"
Expand Down Expand Up @@ -1204,4 +1204,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
4 changes: 2 additions & 2 deletions 05a - Deep Neural Networks (PyTorch).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
"outputs": [],
"source": [
"penguin_classes = ['Amelie', 'Gentoo', 'Chinstrap']\n",
"penguin_classes = ['Adelie', 'Gentoo', 'Chinstrap']\n",
"print(sample.columns[0:5].values, 'SpeciesName')\n",
"for index, row in penguins.sample(10).iterrows():\n",
" print('[',row[0], row[1], row[2],row[3], int(row[4]), ']',penguin_classes[int(row[-1])])"
Expand Down Expand Up @@ -109,7 +109,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The *features* are the measurements for each penguin observation, and the *label* is a numeric value that indicates the species of penguin that the observation represents (Amelie, Gentoo, or Chinstrap).\n",
"The *features* are the measurements for each penguin observation, and the *label* is a numeric value that indicates the species of penguin that the observation represents (Adelie, Gentoo, or Chinstrap).\n",
"\n",
"## Install and import the PyTorch libraries\n",
"\n",
Expand Down
4 changes: 2 additions & 2 deletions 05a - Deep Neural Networks (TensorFlow).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
"outputs": [],
"source": [
"penguin_classes = ['Amelie', 'Gentoo', 'Chinstrap']\n",
"penguin_classes = ['Adelie', 'Gentoo', 'Chinstrap']\n",
"print(sample.columns[0:5].values, 'SpeciesName')\n",
"for index, row in penguins.sample(10).iterrows():\n",
" print('[',row[0], row[1], row[2],row[3], int(row[4]), ']',penguin_classes[int(row[-1])])"
Expand Down Expand Up @@ -109,7 +109,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The *features* are the measurements for each penguin observation, and the *label* is a numeric value that indicates the species of penguin that the observation represents (Amelie, Gentoo, or Chinstrap).\n",
"The *features* are the measurements for each penguin observation, and the *label* is a numeric value that indicates the species of penguin that the observation represents (Adelie, Gentoo, or Chinstrap).\n",
"\n",
"## Install and import TensorFlow libraries\n",
"\n",
Expand Down

0 comments on commit 614a3f2

Please sign in to comment.