Lecture 7 Flashcards
Supervised Learning
Supervised learning is a type of machine learning where a model is trained on a labeled dataset, consisting of input-output pairs.
Supervised learning examples
- spam detector email, model is trained to detect email considered as spam
- medical diagnosis, model is trained to distinguish healthy and diseased
- credit scoring, to know individuals credit score
Unsupervised learning
Unsupervised learning is a category of machine learning where the algorithm is trained on unlabeled data.
Unsupervised learning
- customer segmentation in marketing
- image and document clustering
- anomaly detection in network security
multiple vs logistic regression
multiple regression: Used when the dependent variable is continuous and has a wide range of possible values. The output is a numeric value.
logistic regression: Used when the dependent variable is binary or categorical (usually representing two classes). The output is a probability score that is transformed using the logistic function.