Skip to content

Commit e0d4334

Browse files
committed
minor updates
1 parent 0f51add commit e0d4334

File tree

3 files changed

+33
-6
lines changed

3 files changed

+33
-6
lines changed

notebooks/18_machine_learning_algorithms_3.ipynb

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,19 @@
190190
"cell_type": "code",
191191
"execution_count": 2,
192192
"id": "c42c7331-88e2-4403-a73d-734355274ed4",
193-
"metadata": {},
193+
"metadata": {
194+
"editable": true,
195+
"slideshow": {
196+
"slide_type": ""
197+
},
198+
"tags": []
199+
},
194200
"outputs": [],
195201
"source": [
196-
"filename = \"../datasets/penguins_size.csv\" # contains some changes with respect to the original dataset!\n",
202+
"# The \"classical\" penguins dataset, but with some additional changes \n",
203+
"filename = \"../datasets/penguins_size.csv\" \n",
204+
"# or: filename = r\"https://raw.githubusercontent.com/florian-huber/data_science_course/refs/heads/main/datasets/penguins_size.csv\"\n",
205+
"\n",
197206
"data = pd.read_csv(filename)"
198207
]
199208
},

notebooks/19_machine_learning_techniques.ipynb

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,13 @@
305305
"cell_type": "code",
306306
"execution_count": 2,
307307
"id": "c42c7331-88e2-4403-a73d-734355274ed4",
308-
"metadata": {},
308+
"metadata": {
309+
"editable": true,
310+
"slideshow": {
311+
"slide_type": ""
312+
},
313+
"tags": []
314+
},
309315
"outputs": [],
310316
"source": [
311317
"filename = \"../datasets/obesity_dataset.csv\"\n",
@@ -1055,7 +1061,13 @@
10551061
"cell_type": "code",
10561062
"execution_count": 10,
10571063
"id": "15d7fef0-654e-41f3-aa46-6782f49e2f53",
1058-
"metadata": {},
1064+
"metadata": {
1065+
"editable": true,
1066+
"slideshow": {
1067+
"slide_type": ""
1068+
},
1069+
"tags": []
1070+
},
10591071
"outputs": [],
10601072
"source": [
10611073
"from sklearn.model_selection import train_test_split\n",

notebooks/20_machine_learning_ensembles.ipynb

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
{
44
"cell_type": "markdown",
55
"id": "6128f2b2-403b-488e-9a4e-44a791ff5e56",
6-
"metadata": {},
6+
"metadata": {
7+
"editable": true,
8+
"slideshow": {
9+
"slide_type": ""
10+
},
11+
"tags": []
12+
},
713
"source": [
814
"# Ensemble Models and Outlook\n",
915
"\n",
@@ -947,7 +953,7 @@
947953
"name": "python",
948954
"nbconvert_exporter": "python",
949955
"pygments_lexer": "ipython3",
950-
"version": "3.10.13"
956+
"version": "3.9.18"
951957
}
952958
},
953959
"nbformat": 4,

0 commit comments

Comments
 (0)