Skip to content

Commit 7c96347

Browse files
committed
Fix Task 4 comment
1 parent 51d17eb commit 7c96347

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

exercises/01_penguin_classification.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@
267267
"metadata": {},
268268
"outputs": [],
269269
"source": [
270-
"# Apply transforms to the data. See Task 4 exercise comments above.\n",
270+
"# Apply transforms we need to PenguinDataset to convert input data and target class to tensors. \n",
271+
"# See Task 4 exercise comments above.\n",
271272
"\n",
272273
"# Create train_set\n",
273274
"\n",

worked-solutions/01_penguin_classification_solutions.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,9 @@
371371
}
372372
],
373373
"source": [
374-
"# Apply the transforms we need to the PenguinDataset to get out input\n",
375-
"# targets as Tensors. See Task 4 exercise comments above.\n",
374+
"# Apply transforms we need to PenguinDataset to convert input data and target class to tensors. \n",
375+
"# See Task 4 exercise comments above.\n",
376+
"\n",
376377
"\n",
377378
"# Create train_set\n",
378379
"train_set = PenguinDataset(\n",

0 commit comments

Comments
 (0)