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