diff --git a/lessons/3-NeuralNetworks/03-Perceptron/README.md b/lessons/3-NeuralNetworks/03-Perceptron/README.md index 48d9fcb6..51658e78 100644 --- a/lessons/3-NeuralNetworks/03-Perceptron/README.md +++ b/lessons/3-NeuralNetworks/03-Perceptron/README.md @@ -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) = -∑wTxiti