Perceptron Flashcards

1
Q

Start

A

1958, by Frank Rosenblatt from Cornell Aeronautical Laboratory
Intended to be machine rather than program
First implemented in software for IBM 704
Implemented in custom built hardware as well

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What it does

A

It is a binary classifier
>function that can decide whether an input belongs to some specific class
Consists of input values and list of weights
Each weight (Wn) is scalar multiple modified by algorithm to enable perceptron learning
Also has input Xn
Has ‘b’ value bias modified by perceptron to enable it to learn desired behaviour
F(x) =
>1 if wx + b >0
>0 otherwise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Improvement

A

Heavily experimented on in 60s by layering perceptrons by feeding them into each other
In 1980s resurgence of neural network research

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Artificial Neural Networks (ANNs) or (NNs)

A

Evolved form of perceptrons
Networks of artificial neurons
>have sets of inputs and weights for each input
>also have bias variable and maybe some others depending on output function
NNs have neurons arranged in layers and output of each neuron in a layer is then given as input to each neuron in following layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly