Week 2 Flashcards

1
Q

What are these: Classification, regression

A

Supervised learning

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

What are these: Clustering, outlier detection

A

Unsupervised learning

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

Classification predicts ________ values whereas regression predicts _________ values

A

discrete values whereas regression predicts continuous values (REGRESSION CAN ALSO TAKE CATEGORICAL VALUES)

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

Name this: The data has no class labels

A

Unsupervised learning

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

Name this: Data has class labels

A

Supervised learning

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

T/F - You cannot use the same data to test your algorithm, you need an independent test set

A

True. (Training set and test set)

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

What is model overfitting?

A

When you try to get 100% accuracy, this generally means completely tailoring your model to the training data, it will not longer work well on the evaluation data

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

What is model underfitting?

A

When the model performs poorly on the training data

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

Name 2 types of error estimation

A
  1. Random sampling with repeated holdout
  2. K-fold cross-validation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

T/F - In K-fold cross validation we split the data into (usually) 10 equal groups, train on the (usually) first 9 groups and test on the last group.

A

True

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

How is the overall accuracy found in K-fold cross validation?

A

Average accuracy rate = overall accuracy

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

Place these in the correct boxes
TP FN FP TN

 P+ P- A+ A-
A

TP FN
FP TN

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