Notes about perceptrons and sigmoid neurons
Perceptron
A Perceptron behaves like a classifier. Suppose we have an input x
which we want to classify as either belonging to a category (labeled as 1) or another category (labeled as 0).
Its inner formula is given by
Given an input x
, for example x=(x1,x2)
, the Perceptron calculates a score: when wT⋅x+b≥0
the input belongs to the category labeled as 1, if wT⋅x+b<0
the input belongs to a category labeled as 0.