clarify definition of error.

This commit is contained in:
Landlocked Surfer 2024-05-17 10:38:59 +02:00 committed by GitHub
parent 4b9ae3a125
commit 7811643877
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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>