Supervised Learning: Regression And Classification Guide
Supervised learning is one of the most common ways to start with machine learning. You give the model examples where the correct answer is already known, and the model learns patterns that connect inputs to labels. The first practical decision is whether your problem is regression or classification. Quick Answer Use regression when the label is a continuous number, such as price, fare, duration, or weight. Use classification when the label is a category, such as fraud/not fraud, spam/not spam, churn/no churn, or approved/rejected. ...