6.2 Logistic Regression Flashcards

1
Q

Typically, logistic regression can be used when we are facing with ………. inputs and ……… outputs.

A

continuous; discrete

Typically inputs of a logistic regression are feature values that are continuous, and the output is the class label which is discrete

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

In logistic regression, if β⋅X≫1 , the label would be:

A

1

In this case, the denominator of the logistic function approaches to 1 (refer to Slide 14), so the output will be 1.

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

The overall likelihood function in logistic regression over a training dataset is the product of the likelihood of individual instances, because …

A

Features are assumed uncorrelated

The overall likelihood over a dataset is the product of individual likelihood when we assume that the training instances are independent, which means that observing one instance will not change the probability of another instance.

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

Given multi-class classification problem with K classes, using multinomial logistic regression, how many logistic regression models do we need to build?

A

K-1

The multinomial logistic regression picks one class as the pivot, and then build K-1 models to separate this pivot class and one of the other classes (in total, K-1 of them).

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