Logistic Regression - Hypothesis Representation

Logistic Regression - Hypothesis Representation


Linear regression: hθ(x)=θTx

Want 0<=hθ(x)<=1
Logistic regression: hθ(x)=g(θTx) where g(z)=11+ez (sigmoid/logistic function)
Resources:
https://www.coursera.org/learn/machine-learning/supplement/AqSH6/hypothesis-representation

Comments