1

Is logistic regression only for binary classification or can it be applied for multi class classifications as well.

Also, can you please list down what are other classification methods for multi classes(for more than 2 classes)

Sycorax
  • 76,417
  • 20
  • 189
  • 313
  • 1
    Logistic regression is *not* a classifier, see https://stats.stackexchange.com/questions/127042/why-isnt-logistic-regression-called-logistic-classification/127044#127044 – Tim Nov 29 '17 at 14:55

1 Answers1

0

Multinomial logistic regression can be used to do multi class classification.

In addition, we can always use "one vs. rest" to turn binary classification to multi class classification (wikipedia Multiclass classification Transformation to Binary section.

Haitao Du
  • 32,885
  • 17
  • 118
  • 213