码迷,mamicode.com
首页 > 其他好文 > 详细

损失函数

时间:2016-09-13 19:16:37      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

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


技术分享
 




损失函数

标签:

原文地址:http://www.cnblogs.com/iathena/p/adff097f87efcb087139ca5948015f93.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!