What is a feature in the context of machine learning?
A descriptor for an instance
Explanation
In Machine Learning, a feature is an individual measurable property or characteristic (descriptor) of a data instance that the model uses to make predictions.
For example, in a house price prediction model:
House Features
House A Size, Number of Bedrooms, Location, Age
House B Size, Number of Bedrooms, Location, Age
Here, size, number of bedrooms, location, and age are the features.
Option Review
a) A structured database – A database stores data but is not a feature.
b) A category of data – A feature is a characteristic, not a category.
c) A descriptor for an instance -. A feature describes an individual data instance (record).
d) Data preprocessing step – Feature engineering may occur during preprocessing, but a feature itself is not a preprocessing step.
A descriptor for an instance because a feature in machine learning refers to an individual measurable property or characteristic used to describe an instance in a dataset. This understanding is crucial for identifying and selecting relevant variables that will enhance model performance.

