Skip to content

Commit b941874

Browse files
Fixed typo in notebook02
1 parent 4377270 commit b941874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_pytorch_classification.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2487,7 +2487,7 @@
24872487
" # 1. Forward pass\n",
24882488
" test_logits = model_3(X_test).squeeze()\n",
24892489
" test_pred = torch.round(torch.sigmoid(test_logits)) # logits -> prediction probabilities -> prediction labels\n",
2490-
" # 2. Calcuate loss and accuracy\n",
2490+
" # 2. Calculate loss and accuracy\n",
24912491
" test_loss = loss_fn(test_logits, y_test)\n",
24922492
" test_acc = accuracy_fn(y_true=y_test,\n",
24932493
" y_pred=test_pred)\n",

0 commit comments

Comments
 (0)