Datasets Flashcards

1
Q

Hypertuning

A

This is the process of tuning and adjusting hyperparameters of the neural network to optimize for its performance

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

3 types of datasets

A

Training

Validation

Testing

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

Training Dataset

A

Used to train a neural network to produce a desired output. Contains input data with known output (correct answer) which the NN can use for comparison later to calculate loss.

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

Validation Dataset

A

Used for hypertuning.

Detects adjustments needed that will improve the performance of the NN.

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

Testing dataset

A

Used to evaluate the performance of the NN. It also contains the “Correct prediction/answer” however testing data must not overlap with the training data. 2 different things.

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

Hyperparameters what are they and give 2 of them.

A

These are aspects of the architecture of the NN that can be adjusted to optimize performance of the network.

  1. Number of layers
    - More layers can lead to more precision
    - However, more layers can lead to vanishing gradient problem
    - It also may require more memory and processing power
  2. Learning rate
    - A faster learning rate can lead to the NN learning to produce the correct output more quickly
    - A faster learning rate may however lead to the NN to stop learning too early, ultimately creating an inaccurate network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Learning Rate

A

How dramatically weights are changed in response to the calculated gradients

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