Glossary term
Glossary term
Foundations
The values of one row of features and possibly a label. Examples in supervised learning fall into two general categories:
A labeled example consists of one or more features and a label. Labeled examples are used during training.
An unlabeled example consists of one or more features but no label. Unlabeled examples are used during inference.
For instance, suppose you are training a model to determine the influence of weather conditions on student test scores. Here are three labeled examples:
Here are three unlabeled examples:
The row of a dataset is typically the raw source for an example. That is, an example typically consists of a subset of the columns in the dataset. Furthermore, the features in an example can also include synthetic features, such as feature crosses.
See Supervised Learning in the Introduction to Machine Learning course for more information.
Created for this library
A retail forecasting team treats each store-week-SKU row as one example for its demand model.
A risk modeling team treats each application as one example, with features describing the applicant and a label of approve or refer.
A churn team treats each customer-month as one example so the model is evaluated on monthly cancellation outcomes.
Definition source: Google for Developers Machine Learning Glossary | Creative Commons Attribution 4.0 License