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

logistic regression

时间:2015-04-28 08:17:14      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

cost function:

\(J(\theta)=\frac{1}{m}\sum_{i=1}^{m}Cost(h_\theta(x^{i}),y^{i})\)

\(Cost(h_\theta(x),y)=-ylog(h_{\theta}(x))-(1-y)log(h_{\theta}(x))\)

\(h_\theta(x)=\frac{1}{1+e^{-\theta^{T}.x}}\)

 

选择cost function的一个重要考虑是,选择的cost function必须是convex,这样很多求最优值的方法就能使用,比如gradient discent。

如果仿照linear regression的cost function,构建的logistic regression。

\(Cost(h_\theta(x),y)=(h_{\theta}(x)-y)^{2}\)

这个cost函数是non-convex

logistic regression

标签:

原文地址:http://www.cnblogs.com/jfwang/p/4175166.html

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