Logistic Regression
Last updated
Was this helpful?
Last updated
Was this helpful?
Converges to minimum loss but will just draw linearly boundaries on data
Can only handle 2 classes
Main characteristics
Binary Classification Model
Probabilistic output (0. - 1.)
Cannot use non-linear decision boundaries
Uses as the activation function
used to pick a discrete binary output
Relevant properties:
Assumes:
linearity between features and log-odds
independent observations
minimal multicollinearity
Supports and regularization to prevent overfitting.
Weight coefficients are interpretable
Also known as Softmax Regression Model or Multinomial Logistic Regression:
One-hot Encoded labels, instead of 0/1 labels
activation, instead of
Multiclass Cross Entropy, instead of as the loss function