对数几率回归-Logistic Regression
Finally, I’d use English for excercise and for conveniently type in the equations without switch. Table of content: [TOC] Recall, Implement and Experiment for Logistic Regression 1. Recall the Linear Model Linear regression is for learing the parameter of $\boldsymbol{w}$ and $\boldsymbol{b}$ for: $$ f(x_i) = wx_i + b,,,, \mathrm{and ,, let ,,} f(x_i) \simeq y_i$$ 2. Logistic regression Logistic regression is a linear model for classfy data. The generalized linear model equation: $$ y = g^{-1} (\boldsymbol{w}^T\boldsymbol{x} +b) $$ the $g(\cdot)$ is called the link function.
…