Quiz's Flashcards

1
Q

Which of the following is NOT an activation function?

Tanh

Softmax

Cross-entropy

Sigmoid

A

Cross-entopy

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

Which statement regarding forward and backward propagation is correct?

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

What is the difference between forward and back propogation?

A

Forward propagation’s purpose is to obtain the model errors, while backward propagation’s is to update the weights.

Explanation:
Forward propagation is when we run the model with some input data. After that, we obtain the output from which, along with the targets, we can determine the errors of our network and the loss function. Meanwhile, back-propagation is when we compute each weight’s contribution to these errors in order to know how to update it.

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

What is one way we can deal with overfitting?

A

Early stopping

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

What is the best approach to the initialization of weights?

A

The Xavier initialization

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