Processing math: 100%

Friday, December 29, 2017

Perceptrons and Classification

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
score=wixi+b=wTx+b
Given an input x , for example x=(x1,x2) , the Perceptron calculates a score: when wTx+b0 the input belongs to the category labeled as 1, if wTx+b<0 the input belongs to a category labeled as 0.