AIExplainer
Machine Learning Intermediate 2 min read

What is an example?

The values of one row of features and possibly a label.

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:

Pressure | Test score | 998 | Good | 1020 | Excellent | 1012 | Poor | Here are three unlabeled examples: Pressure | --- | 1014 | 1017 | 1021 | 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.

Practitioners refer to example when building, training, or evaluating machine learning systems. It appears in research papers, product documentation, and technical discussions about AI capabilities and limitations.