Linearity of Binary Logistic Regression #61
-
Is a single layer logistic neuron with sigmoid activation able to learn non linear classification boundaries ?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Good question, but the answer is no. This would be a logistic regression model :).
That's because the terms still enter the function in a linear fashion. E.g., if you have |
Beta Was this translation helpful? Give feedback.
Good question, but the answer is no. This would be a logistic regression model :).
That's because the terms still enter the function in a linear fashion. E.g., if you have
sigmoid(w1*x1 + w2*x2 + b)
thenw1*x1 + w2*x2 + b
is still a linear function. To create non-linear boundaries, there would need to be a nonlinear interaction between the terms. E.g.,w1*x1 + w2*x2^2 + b
orw1*x1 + w2*w1*x2 + b
etc.