Classification and ROC Flashcards

1
Q

How is accuracy of classification model estimated?

A

confusion matrix

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

what is Accuracy

A

How often are prediction correct overall
TP+TN/ ALL

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

What is Precision?

A

When prediction were yes/positive , how often are they correct?
TP / (TP + FP)

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

what is recall?

A

When actuals were yes or positive, how often are they correct?
TP / (TP + FN)

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

What is goal of Cross validation like k-fold.

A

The goal of cross-validation is to test the model’s ability to predict new data that was not used in estimating it

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

What are Estimation methodologies for classification?

A

K-Fold cross validation
Leave-one-out
bootstrapping
jackknifing
Area under the ROC curve

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

What is ROC curve

A

ROC(Receiver Operating Characteristic)
for visual comparison of classification models

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

what does area under the ROC curve measure?

A

the area under the ROC curve measures the accuracy of the model.

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

What does ROC curve shows? in terms of confusion matrics

A

shows trade-off between the true positive rate and the false positive rate.

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

what is the area of curve of perfect accuracy?

A

1

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

what is k-fold cross validation

A

Estimation methodology for classification.
spilts the data into K mutually exclusive subsets.

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