chapter 6 Flashcards
(8 cards)
what is the meaning of regression model?
the model that predicts a real-valued number for something.
Best combination between loss function and activation units.
1- logistic unit + cross-entropy»_space;»» Binary classification.
2-softmax unit + categorical cross-entropy»_space;»» Multiclassification.
3-linear unit + MSE»_space;»»Regression.
The softmax unit
is a generalization of the logistic sigmoid function but extended to multiple outputs.
what is the meaning of classification model?
The model that measures the probability of a particular class being present and distinguishing it from other classes.
The linear output unit
used to predict a value not limited to the range 0 to 1, and uses the identity function as an activation function.
Regularization techniques
is a technique that aims at reducing the gap between training error and test error.
Weight decay
one of the regularization techniques that implemented by adding a penalty term to the loss function.
Dropout
one of the regularization techniques that implemented by randomly removing a subset of the neurons from the network during training.