Neural Networks: Training Flashcards

1
Q

Part 1

A

Feeding data - The network starts by taking in input data through the input layer.

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

Part 2

A

Input data flows from the input layer through the hidden layers and ultimately, the output layer, where the NN makes its first prediction.

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

Part 3

A

Calculating error. After making a prediction, the NN will then compare its prediction to the correct answer (extracted from its training data).
The difference between the prediction and the correct answer is calculated and standardized using a loss function.

(loss function measures how wrong the network’s predictions are for a single epoch; the goal is to make this error as small as possible)

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

Part 4

A

Learning from our mistakes or specifically, backpropagation. This is when the NN will reflect on its errors and use that reflection to figure out how to adjust its neurons’ calculations (by adjusting weights) to make better predictions next time.

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

Part 5

A

Repeating the process. This whole process of inputting data, making a prediction, calculating errors, and adjusting weights using backpropagation is repeated with many epochs of the NN.

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

Part 6

A

Evaluating performance. After several epochs, the NN’s performance is evaluated to see if it has improved and accurately predicting for the task it was designed for.

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