Lecture 7 Flashcards

1
Q

Supervised Learning

A

Supervised learning is a type of machine learning where a model is trained on a labeled dataset, consisting of input-output pairs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Supervised learning examples

A
  1. spam detector email, model is trained to detect email considered as spam
  2. medical diagnosis, model is trained to distinguish healthy and diseased
  3. credit scoring, to know individuals credit score
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Unsupervised learning

A

Unsupervised learning is a category of machine learning where the algorithm is trained on unlabeled data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Unsupervised learning

A
  1. customer segmentation in marketing
  2. image and document clustering
  3. anomaly detection in network security
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

multiple vs logistic regression

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly