Machine Learning Glossary Flashcards

https://developers.google.com/machine-learning/glossary/#classification_model

1
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
2
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
3
Q

label

A

In supervised learning, the “answer” or “result” portion of an example.
Each example in a labeled data set consists of one or more features and a label. For instance, in a housing data set, the features might include the number of bedrooms, the number of bathrooms, and the age of the house, while the label might be the house’s price. In a spam detection dataset, the features might include the subject line, the sender, and the email message itself, while the label would probably be either “spam” or “not spam.”

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

feature

A

An input variable used in making predictions.

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

example

A

One row of a data set. An example contains one or more features and possibly a label.
See also labeled example and unlabeled example.

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

labeled example

A

An example that contains features and a label. In supervised training, models learn from labeled examples.

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

unlabeled example

A

An example that contains features but no label.

Unlabeled examples are the input to inference. In semi-supervised and unsupervised learning, unlabeled examples are used during training.

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