AI Flashcards

1
Q

binary classification

A

A type of classification task that outputs one of two mutually exclusive classes. For example, a machine learning model that evaluates email messages and outputs either “spam” or “not spam” is a binary classifier.

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

classification model

A

A type of machine learning model for distinguishing among two or more discrete classes. For example, a natural language processing classification model could determine whether an input sentence was in French, Spanish, or Italian. Compare with regression model.

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

regression model

A

A type of model that outputs continuous (typically, floating-point) values. Compare with classification models, which output discrete values, such as “day lily” or “tiger lily.”

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

TPR

A

True positive rate. (synonym for recall)

TPR = TP / (TP + FN)

Of all the positive label, what the percentage is to be right true positive.

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

FPR

A

False positive rate

FPR = FP / (FP + TN)

Of all the negative label, what the percentage is to be false positive.

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

AUC

A

AUC (Area under the ROC Curve)

An evaluation metric that considers all possible classification thresholds.

The Area Under the ROC curve is the probability that a classifier will be more confident that a randomly chosen positive example is actually positive than that a randomly chosen negative example is positive.

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

ROC

A

ROC (receiver operating characteristic) Curve

A curve of true positive rate vs. false positive rate at different classification thresholds. See also AUC.

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