Perceptron Flashcards
What is the learning rate?
This is how large of a step the AI takes each iteration
What is the effect of slower learning rate?
It takes longer for the data to converge
What is the effect of a higher learning rate?
> The AI learns faster
> It may become unstables
How do human neurons fire, why?
> Neurons accumilate stimulus
> Neurons fire when the stimulous given to them is higher than a certain threshold
> Neurons are binary, they either fire or dont fire
What is the model for the McCulloch and Pitts neuron?
> Several inputs
> Each input has a weight associated with it which indicates the importance of that input
> If the sum of weights and inputs is greater than a threshold, then it fires
What is the equation for the weights and inputs of a neuron for the McCulloch and Pitts neuron?
∑ wixi = w∙x
What is the threshold equation for the McCulloch and Pitts neuron?
o(hw) =
{ 1 if hw > θ
{ 0 if hw ≤ θ
What is the decision boundary of the McCulloch and Pitts neuron?
hw = θ
What are the issues with the McCulloch and Pitts model of a neuron?
> Other neuron characteristics are not taken into account
> The sum of weights and inputs is not neccissarily what the neuron is doing
> Actual neurons do not fire in a single spike, instead they fire in a spike train
> Artificial networks are synchronous where real biological netowrks are asynchronous
What is a functional aproximators and why is a neuron called a functional aproximator?
> It is something that can aproximate any function
> They are called it because they produce an aproximate function that is a boundary between classes
What are the two approaches of AI models?
> Generative model
> Discriminative model
What is a generative model?
A model that learns the underlying distribution of the data so it can generate more points
What are examples (2) of using a generative model?
> 4k Upscaling
> Generating faces of not real people
What is a discriminative model?
A model that only learns the decision boundary and not the distribution that underlays the data points
What is an example of using a discriminative model?
> Image recognition
What is a perceptron?
This is a collection (array) of neurons and input variables
When should a perceptron be used?
When data is linearly separable by a hyper plane in n dimensions
How is the number of neurons decided?
The number of classes being classified
How do we calculate the number of parameters for a perceptron with multiple neurons?
Number of inputs × Number of neurons = number of connections
number of connections + number of outputs = number of parameters
What is the basic error function?
> The total number of mistakes
> E(X) = ∑ | yn - tn |
- E(X) = Error
- yn = Result of perceptron
- tn = target of perceptron
How does the basic error function work for each example?
> E(X) = ∑ | yn - tn |
> When they are different:
- yn - tn = 1 - 0 = 1
- yn - tn = 0 - 1 = -1
- | yn - tn | = 1
> When the same:
- yn - tn = 0 - 0 = 0
- yn - tn = 1 - 1 = 0
- | yn - tn | = 0
What do we want to do with the weights to optimise the perceptron?
Adjust the weights until the error is minimised
How do we use biased input?
Instead of having the threshold associated with each neuron, we can instead include this as an input to the neuron. This would make the equation for the sum:
hw = ∑ wixi - θ
and the output:
o(hw) =
{ 1 if hw > 0
{ 0 if hw ≤ 0