Did you know that you can navigate the posts by swiping left and right?
What is (supervised) machine learning?
A label is the thing we’re predicting—the y variable in simple linear regression. The label could be the future price of wheat, the kind of animal shown in a picture, the meaning of an audio clip, or just about anything.
A feature is an input variable—the x variable in simple linear regression. A simple machine learning project might use a single feature, while a more sophisticated machine learning project could use millions of features, specified as:
In the spam detector example, the features could include the following:
A model defines the relationship between features and label. For example, a spam detection model might associate certain features strongly with “spam”. Let’s highlight two phases of a model’s life:
A regression model predicts continuous values. For example, regression models make predictions that answer questions like the following:
A classification model predicts discrete values. For example, classification models make predictions that answer questions like the following