码迷,mamicode.com
首页 >  
搜索关键字:isotonic regression    ( 857个结果
PRML-Chapter3 Linear Models for Regression
Example: Polynomial Curve Fitting The goal of regression is to predict the value of one or more continuous target variables t given the value of a D-d...
分类:其他好文   时间:2015-06-06 23:27:37    阅读次数:369
Linear_regression与 Logistic_regression简单比较与python实现
Linear_regression与 Logistic_regression简单比较与实现 好久没写博客了,在度厂实习期间更是天天累成了狗的节奏,最近有幸蹭到隔壁组老大小黑黑关于machine learning这块的培训(以下图片均摘自小黑黑的PPT),甚是感动,决定好好学习下这块的东西。Linear_regression 和 Logistic_regression 其实是非常相似的两种算法。...
分类:编程语言   时间:2015-06-01 00:51:07    阅读次数:268
Linear Regression总结
转自:http://blog.csdn.net/dongtingzhizi/article/details/16884215Linear Regression总结作者:洞庭之子微博:洞庭之子-Bing(2013年11月)关于linear regression,Andrew Ng老师的课程中介绍了两种...
分类:其他好文   时间:2015-05-30 19:39:34    阅读次数:136
模型选择
数据量小,选用 high bias/low variance模型(Naive Bayes),因为low bias/high variance模型(KNN,logistic regression)会overfitNaive Bayes:简单,只需要计数就可以;数据量小时,也适用;如果各因素独立(比如词...
分类:其他好文   时间:2015-05-29 13:52:16    阅读次数:196
why constrained regression and Regularized regression equivalent
problem 1: $\min_{\beta} ~f_\alpha(\beta):=\frac{1}{2}\Vert y-X\beta\Vert^2 +\alpha\Vert \beta\Vert$problem 2: $\min_{\beta} ~\frac{1}{2}\Vert y-X\b.....
分类:其他好文   时间:2015-05-29 06:12:52    阅读次数:154
学习Logistic Regression的笔记与理解(转)
学习Logistic Regression的笔记与理解1.首先从结果往前来看下how logistic regression make predictions。设我们某个测试数据为X(x0,x1,x2···xn),Θ(θ0,θ1,θ2,···θn)为我们的学习算法所学到的参数,那么写成向量的话就变成...
分类:其他好文   时间:2015-05-28 21:13:02    阅读次数:157
(转)Eclipse中junit框架的使用——单元测试
【转】junit浅学笔记一 JUnit是一个回归测试框架(regression testing framework)。Junit测试是程序员测试,即所谓白盒测试,因为程序员知道被测试的软件如何(How)完成功能和完成什么样(What)的功能。Junit是一套框架,继承TestCase类,就可以用Ju...
分类:系统相关   时间:2015-05-27 20:40:28    阅读次数:201
Stanford公开课机器学习---3.多变量线性回归 (Linear Regression with multiple variable)
3.多变量线性回归 (Linear Regression with multiple variable) 3.1 多维特征(Multiple Features) 3.2 多变量梯度下降(Gradient descent for multiple variables) 3.3 特征缩放(feature scaling) 3.4 学习率(Learning rate)...
分类:其他好文   时间:2015-05-27 14:00:37    阅读次数:173
logistic regression编程练习
本练习以为基础, 重现书中代码, 以达到熟悉算法应用为目的1.梯度上升算法新建一个logRegres.py文件, 在文件中添加如下代码:from numpy import *#加载模块 numpydef loadDataSet(): dataMat = []; labelMat = [] ...
分类:其他好文   时间:2015-05-25 23:43:45    阅读次数:289
Stanford公开课机器学习---2.单变量线性回归(Linear Regression with One Variable)
单变量线性回归(Linear Regression with One Variable)2.1 模型表达(Model Representation) m 代表训练集中实例的数量 x 代表特征/输入变量 y 代表目标变量/输出变量 (x,y) 代表训练集中的实例 (x(i),y(i) ) 代表第 i 个观察实例 h 代表学习算法的解决方案或函数也称为假设(hypothesis) 单变量线性回归:只含...
分类:其他好文   时间:2015-05-25 11:31:53    阅读次数:218
857条   上一页 1 ... 67 68 69 70 71 ... 86 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!