Skip to content

Fix typo in loss function definition #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2.1-a-first-look-at-a-neural-network.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
"\n",
"To make our network ready for training, we need to pick three more things, as part of \"compilation\" step:\n",
"\n",
"* A loss function: the is how the network will be able to measure how good a job it is doing on its training data, and thus how it will be \n",
"* A loss function: this is how the network will be able to measure how good a job it is doing on its training data, and thus how it will be \n",
"able to steer itself in the right direction.\n",
"* An optimizer: this is the mechanism through which the network will update itself based on the data it sees and its loss function.\n",
"* Metrics to monitor during training and testing. Here we will only care about accuracy (the fraction of the images that were correctly \n",
Expand Down