Depth Study Notes (1)

Logistic regression

Although logistic regression algorithm is literally a return to the word, but it is essentially a classification problem solving, the most intuitive expression which is a function Sigmod
S i g m O d ( x ) = 1 1 + e oh x + b {Sigmod(x)=\frac{1}{1+e^{\omega*x+b}}}
Logstic loss function is:
C O s t F in n t i O n = 1 m i = 1 m [ Y log y ^ + ( 1 y ) log ( 1 y ^ ) ] {CostFuntion=-\frac{1}{m}\sum_{i=1}^{m}[y\log\hat{y}+(1-y)\log(1-\hat{y})]}
A logistic regression unit may act as a node of the depth of the neural network, is also the basic constituent elements of the neural network.

Guess you like

Origin blog.csdn.net/qq_19672707/article/details/90384095