Important Definitions Flashcards

1
Q

Overfitting

A

Happens when the model matches the training data so closely that the model fails to make predictions on new data. It performs well on training data but bad on evaluation data (testing and validation)

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

Underfitting

A

When the the model performing poorly on the training data. It fails to capture the relationship between the input examples and the target values (basically fails to understand the relationship between the input images and target value)

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

Training set

A

A subset of the dataset. Used to train (feeding the data to it and learning the good values for all the weights). Should include different examples than from the other sets.

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

Weight

A

A numerical value associated witu the connections between neurons/nodes. Training= determining ideal wifhtd. Inference=using weights fo make predictions

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

Neuron

A

A unit inside a hidden layer in a neural network. Neurons relay info to each other.

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

Feature

A

An input variable (which can have different values) to a model. This model has 224 × 224 × 3 (RGB) feautures)

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

Label

A

The result/answer part of an examplr

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

Example

A

Input (image) + label (class for the image)

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

Accuracy

A

The number of correct classification predictions divided by the total number of predictions.

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

Loss

A

During the training of a supervised model, a measure of how far a model’s prediction is from its label.

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

val-loss (Validation Loss)

A

A metric representing a model’s loss on the validation set during a particular iteration of training.

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

val-accuracy (validation accuracy)

A

The accuracy on the validation set. This accuracy is more important during training because it tests the model after its training (each epoch)

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

Test loss

A

Loss on the training dataset. When building a model, you typically try to minimize test loss. That’s because a low test loss is a stronger quality signal than a low training loss or low validation loss.

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

Training loss

A

A metric representing a model’s loss during a particular training iteration.

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