Skip to content

Commit 4eb28cc

Browse files
Fixed typo in notebook02
accuray -> accuracy
1 parent b941874 commit 4eb28cc

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
@@ -3740,7 +3740,7 @@
37403740
" * Feel free to use any combination of PyTorch layers (linear and non-linear) you want.\n",
37413741
"3. Setup a binary classification compatible loss function and optimizer to use when training the model.\n",
37423742
"4. Create a training and testing loop to fit the model you created in 2 to the data you created in 1.\n",
3743-
" * To measure model accuray, you can create your own accuracy function or use the accuracy function in [TorchMetrics](https://torchmetrics.readthedocs.io/en/latest/).\n",
3743+
" * To measure model accuracy, you can create your own accuracy function or use the accuracy function in [TorchMetrics](https://torchmetrics.readthedocs.io/en/latest/).\n",
37443744
" * Train the model for long enough for it to reach over 96% accuracy.\n",
37453745
" * The training loop should output progress every 10 epochs of the model's training and test set loss and accuracy.\n",
37463746
"5. Make predictions with your trained model and plot them using the `plot_decision_boundary()` function created in this notebook.\n",

0 commit comments

Comments
 (0)