在之前的这篇日志中,我简单介绍了使用R进行Logistic
Regression时,Recall,Precision,TPR,FPR等等的计算,但是如果依照这种方法绘制ROC曲线(关于ROC和AUC的概念,网上有很多介绍,例如:http://beader.me/2013/12/15/auc-roc/ )就太过于麻烦了,需要手动调整分类阈值。其实R也提供了最基本的ROC曲线绘制的工具包(Pack...
分类:
其他好文 时间:
2015-02-23 12:01:29
阅读次数:
269
机器学习Machine Learning - Andrew NG
courses学习笔记
Classification
0、1表示含义
denote with 0 is the negative class
denote with 1 is the positive class.
Hypothesis Representation
Decisi...
分类:
系统相关 时间:
2015-02-19 23:00:48
阅读次数:
350
logistic regression , 梯度下降法
分类:
其他好文 时间:
2015-02-14 18:48:35
阅读次数:
216
This post builds on aprevious post, but can be read and understood independently.As part of my course on statistical learning, we created 3D graphics ...
分类:
其他好文 时间:
2015-02-09 10:43:24
阅读次数:
245
机器学习Machine Learning - Andrew NG
courses学习笔记
linear regression works with multiple variables or with multiple features多变量线性规划
Multiple Features多变量
Gradient Descent for Multiple...
分类:
系统相关 时间:
2015-02-05 18:31:27
阅读次数:
237
本栏目(机器学习)下机器学习基石专题是个人对Coursera公开课机器学习基石(2014)的学习心得与笔记。所有内容均来自Coursera公开课Machine Learning Foundations中Hsuan-Tien Lin林轩田老师的讲解。(https://class.coursera.org/ntumlone-002/lecture)
第9讲-------Linear Regres...
分类:
其他好文 时间:
2015-02-05 13:45:18
阅读次数:
223
茫然中不知道该做什么,更看不到希望。 偶然看到coursera上有Andrew Ng教授的机器学习课程以及他UFLDL上的深度学习课程,于是静下心来,视频一个个的看,作业一个一个的做,程序一个一个的写。N多数学的不懂、Matlab不熟悉,开始的时候学习进度慢如蜗牛,坚持了几个月,终于也学完了。...
分类:
其他好文 时间:
2015-02-04 16:23:11
阅读次数:
319
斯坦福大学机器学习公开课---Programming Exercise 1: Linear Regression
1 Linear regression with one variable
In thispart of this exercise, you will implement linear regression with one variableto predict profi...
分类:
其他好文 时间:
2015-02-04 00:39:42
阅读次数:
715
斯坦福大学机器学习公开课:Programming Exercise 2: Logistic Regression---Matlab实现
1 Logistic Regression
In this part of the exercise, you will build a logistic regression model to predict whether astudent gets...
分类:
其他好文 时间:
2015-02-03 21:22:42
阅读次数:
1109
main idea:用adaboost类似的方法,选出g,然后选出步长 Gredient Boosting for regression: h控制方向,eta控制步长,需要对h的大小进行限制 对(x,残差)解regression,得到h 对(g(x),残差)解regression,得到eta
分类:
其他好文 时间:
2015-02-03 00:27:33
阅读次数:
395