LU3 Flashcards

1
Q

What is semi- supervised learning

A

Only some of the data is annotated

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

what is classification

A

learns how to assign a class label to examples from the problem domain ( dog / not dog)

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

What is a regression problem

A

Learns to predict continuous variables (temperature)

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

What is a clustering problem

A

Groups data samples into a specified number of groups ( grouping lemons according to sizes)- is unsupervised

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

what is underfitting?

A

Underfitting is when a model does not capture the underlying trend of the data

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

what will happen if we have a underfitted model

A

The accuracy will be bad

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

what does it say about our model if it is underfitted

A

our algorithm does not fit the data well enough

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

when does underfitting occur

A

when we have less data, or if we build a linear model with non-linear data

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

how can you avoid underfitting

A

more data and reducing the features by feature selection

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

what does it mean for bias and variance when we underfit

A

high bias
low variance

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

name some techniques to reduce underfitting

A

increase model complexity
increase number of features (feature engineering)
remove noise from data
increase the number of epochs or increase the duration of training to get better results

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

why does overfitting occur

A

when we train our data with a lot of data (too much)

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

what happens when overfitting occurs

A

the model starts learning from the noise and then does not categorize the data correctly because of too many details and noise

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

why does overfitting occur

A

the algorithm has too much freedom in building the model and leads to unrealistic models

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

How do you avoid overfitting

A

a linear algorithm (for linear data) or using parameters such as maximal depth (decision trees

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

what does overfitting mean for variance and bias

A

high variance and low bias