Skip to content

Commit

Permalink
clarify definition of error.
Browse files Browse the repository at this point in the history
  • Loading branch information
landlockedsurfer authored May 17, 2024
1 parent 4b9ae3a commit 7811643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lessons/3-NeuralNetworks/03-Perceptron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ where f is a step activation function

## Training the Perceptron

To train a perceptron we need to find a weights vector w that classifies most of the values correctly, i.e. results in the smallest **error**. This error is defined by **perceptron criterion** in the following manner:
To train a perceptron we need to find a weights vector w that classifies most of the values correctly, i.e. results in the smallest **error**. This error E is defined by **perceptron criterion** in the following manner:

E(w) = -&sum;w<sup>T</sup>x<sub>i</sub>t<sub>i</sub>

Expand Down

0 comments on commit 7811643

Please sign in to comment.