Skip to content

Commit 23134d3

Browse files
committed
Hotfix removing some solution parts from exercise 1.
1 parent 5fc8819 commit 23134d3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

exercises/01_penguin_classification.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,8 @@
333333
"outputs": [],
334334
"source": [
335335
"data_set = PenguinDataset(\n",
336-
" input_keys=[\"bill_length_mm\", \"body_mass_g\", \"bill_depth_mm\", \"flipper_length_mm\"],\n",
337-
" target_key=\"species\",\n",
336+
" input_keys=[\"...\",],\n",
337+
" target_key=\"...\",\n",
338338
" train=True,\n",
339339
")\n",
340340
"\n",
@@ -601,7 +601,7 @@
601601
"\n",
602602
" # define __init__ function - model defined here.\n",
603603
" def __init__(self):\n",
604-
" super().__init__()\n",
604+
" # ...\n",
605605
"\n",
606606
" # define forward function which calls network\n",
607607
" def forward(self, batch: Tensor) -> Tensor:\n",
@@ -1124,7 +1124,7 @@
11241124
],
11251125
"metadata": {
11261126
"kernelspec": {
1127-
"display_name": "mltut",
1127+
"display_name": "Python 3 (ipykernel)",
11281128
"language": "python",
11291129
"name": "python3"
11301130
},
@@ -1138,7 +1138,7 @@
11381138
"name": "python",
11391139
"nbconvert_exporter": "python",
11401140
"pygments_lexer": "ipython3",
1141-
"version": "3.11.13"
1141+
"version": "3.13.2"
11421142
}
11431143
},
11441144
"nbformat": 4,

0 commit comments

Comments
 (0)