Deep Learning Flashcards
What is the biological inspiration for Deep Learning?
It is inspired by the function and structure of the brain.
What are two types of Deep Learning?
Layered Representations Learning and Hierarchical Representations Learning
What are the three types of layers in a Deep Learning Model?
Input Layer, Hidden Layer, Output Layer
What is the Loss Function?
A function used to calculate how accurate the output of a model is.
Which Loss function is used for Binary output?
Binary Cross Entropy
What is the result of the loss function called?
Loss Score
How is the Loss Score used?
The loss score is fed into an optimizer function and used to update the weights.
What is the function of the input layer?
To receive the data.
What is the function of the Hidden Layers?
To extract features form the images of increasing complexity.
What is the function of the output layer?
To generate probabilities for the specified classes.
What is backpropogation used for?
Backpropogation is used to find a set of weights that minimises the error of the model.
What does SGD stand for?
Stochastic Gradient Descent
Why is an activation function used?
An activation function is used to cope with complex real tasks that require non-linearity.
How does SGD work?
SGD updates the weights of the whole network by looking at every example in the training set.
What is a Hyperparameter?
The specifications of the Architecture of the model