Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 1.19 KB

File metadata and controls

24 lines (20 loc) · 1.19 KB

Perceptron(P)

The Perceptron is an algorithm used for supervised learning of binary classifiers.
Binary classifiers decide whether an input, usually represented by a series of vectors, belongs to a specific class.
In short, a perceptron has 1 filter that has one character property.

When people say Neuron/Unit/Node when they mean the structure of a Perceptron.

code

python3 sample_numpy.py
python3 sample_scratch.py
python3 sample_sklearn.py

Usefull Resources: