Module 4 - Logistic Regression Flashcards

1
Q

Logistic Regression?

A

Used for predicting the outcome of binary dependent variable

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

Softmax Regression?

A

Multiclass Regression

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

Linearly Separable?

A

A data set can be perfectly separated by a linear classifier

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

Decision Boundary?

A

The surface separating different predicted classes

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

Linear Classifier?

A

A classifier that learns linear decision boundaries

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

Support Vector?

A

A training example (data point) not in the flat part of the loss diagram

A data point that is incorrectly classified or close to the boundary

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

Smaller gamma leads to?

A

Smoother boundaries

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

Why highest gamma is a bad option?

A

Overfitting

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

The effectiveness of SVM depends on?

A

Selection of Kernel
Kernel Parameters
Soft Margin

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

Selection of Kernel?

A

Gaussian kernel

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

Kernel’s Parameters?

A

Gaussian kernel has a single parameter ^y^

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

Soft margin parameter?

A

C

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

Logistic Regression Comparison?

A
Is a linear classifier
Can use with kernels but slow
Outputs meaningful probabilities
Multi-class extension
All data points affect fit
L2 or L1 Regularization
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Support Vector Machines?

A
Linear classifier
Can use with kernels, fast
Does not naturally output probabilities
Multi-class extension
Only "support vectors" affect fit
Conventionally just L2 regularization
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Applications for SVM?

A

Reduces the need for labeled training instances
Helpful in text categorization
Image classification support
Widely applied in biological and other sciences

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

Issues of SVM?

A
Requires full labeling of input data
Uncalibrated class membership probabilities
The SVM is only direct applicable for two-class tasks
Parameters of solved model are difficult to interpret