Guest User

Untitled

a guest
Apr 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Sigmoid函数
  2. S(x)=1/(1+e^(-x))
  3. 常被用作神经网络阈值函数,将变量映射到0,1之间
  4. loss function:
  5. L(yhat,y)=-(ylogyhat+(1-y)log(1-yhat))
  6. y一般是sigmoid函数,在0到1 之间
Add Comment
Please, Sign In to add comment