Skip to content

Commit 614a3f2

Browse files
committed
Amelie = Adelie
1 parent fa9eb2b commit 614a3f2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

03 - Classification.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@
688688
},
689689
"outputs": [],
690690
"source": [
691-
"penguin_classes = ['Amelie', 'Gentoo', 'Chinstrap']\n",
691+
"penguin_classes = ['Adelie', 'Gentoo', 'Chinstrap']\n",
692692
"print(sample.columns[0:5].values, 'SpeciesName')\n",
693693
"for index, row in penguins.sample(10).iterrows():\n",
694694
" print('[',row[0], row[1], row[2], row[3], int(row[4]),']',penguin_classes[int(row[4])])"
@@ -1204,4 +1204,4 @@
12041204
},
12051205
"nbformat": 4,
12061206
"nbformat_minor": 2
1207-
}
1207+
}

05a - Deep Neural Networks (PyTorch).ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"outputs": [],
6767
"source": [
68-
"penguin_classes = ['Amelie', 'Gentoo', 'Chinstrap']\n",
68+
"penguin_classes = ['Adelie', 'Gentoo', 'Chinstrap']\n",
6969
"print(sample.columns[0:5].values, 'SpeciesName')\n",
7070
"for index, row in penguins.sample(10).iterrows():\n",
7171
" print('[',row[0], row[1], row[2],row[3], int(row[4]), ']',penguin_classes[int(row[-1])])"
@@ -109,7 +109,7 @@
109109
"cell_type": "markdown",
110110
"metadata": {},
111111
"source": [
112-
"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",
112+
"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",
113113
"\n",
114114
"## Install and import the PyTorch libraries\n",
115115
"\n",

05a - Deep Neural Networks (TensorFlow).ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"outputs": [],
6767
"source": [
68-
"penguin_classes = ['Amelie', 'Gentoo', 'Chinstrap']\n",
68+
"penguin_classes = ['Adelie', 'Gentoo', 'Chinstrap']\n",
6969
"print(sample.columns[0:5].values, 'SpeciesName')\n",
7070
"for index, row in penguins.sample(10).iterrows():\n",
7171
" print('[',row[0], row[1], row[2],row[3], int(row[4]), ']',penguin_classes[int(row[-1])])"
@@ -109,7 +109,7 @@
109109
"cell_type": "markdown",
110110
"metadata": {},
111111
"source": [
112-
"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",
112+
"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",
113113
"\n",
114114
"## Install and import TensorFlow libraries\n",
115115
"\n",

0 commit comments

Comments
 (0)