Neural Network Learning Flashcards

1
Q

What is the blame assignment problem?

A

Calculating the measure of how much each neuron contributed to the overall error of the network at the output layer.

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

What is the difference between an epoch and an iteration?

A

An epoch is a single pass through all the examples in the training dataset.

An iteration is a single forward and backward pass plus weight update of the backpropagation algorithm.

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

Complete: Updating weights after each training example is known as ___, _____, or ____ gradient descent.

A

on-line
sequential
stochastic

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

Explain mini-batch gradient descent.

A

Dataset is split into multiple subsets called mini-batches.

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