diff --git a/3-NeuralNetworks/03-Perceptron/README.md b/3-NeuralNetworks/03-Perceptron/README.md index f9ea8dc9..f2d304b8 100644 --- a/3-NeuralNetworks/03-Perceptron/README.md +++ b/3-NeuralNetworks/03-Perceptron/README.md @@ -18,7 +18,8 @@ y(x) = f(wTx) where f is a step activation function -f(x) = \begin{cases} +1 & x \geq 0 \\ -1 & x < 0 \end{cases} \\ + + ## Training the Perceptron diff --git a/3-NeuralNetworks/03-Perceptron/images/activation-func.png b/3-NeuralNetworks/03-Perceptron/images/activation-func.png new file mode 100644 index 00000000..4d122b83 Binary files /dev/null and b/3-NeuralNetworks/03-Perceptron/images/activation-func.png differ