损失函数

1 Square loss
    
 
2 Hinge loss
 
3 Logistic loss
 
4 Cross entropy loss
   Using the alternative label convention,so that,
    the cross entropy loss is defined as
      
 
  1. x = np.linspace(-3, 3, 1000)
  2. y_logit = np.log(1 + np.exp(-x)) / math.log(2)
  3. y_01 = x < 0
  4. y_hinge = 1 - x
  5. y_hinge[y_hinge < 0] = 0


 




posted @ 2016-09-13 18:33  iAthena  阅读(276)  评论(0编辑  收藏  举报