本文参考资料列表: 【1】Robust Regression Shrinkage and Consistent Variable Selection Through the LAD-Lasso 【2】维基百科 https://en.wikipedia.org/wiki/Least_absolute_ ...
分类:
编程语言 时间:
2018-11-17 22:18:58
阅读次数:
226
参考资料: 1.李航《统计学习方法》; 2.https://blog.csdn.net/laobai1015/article/details/78113214 ...
分类:
其他好文 时间:
2018-11-17 17:56:54
阅读次数:
104
逻辑回归案例 小细节 + 逻辑回归(logistic regression)虽然被称之为逻辑回归,但是它本质上其实是一种分类算法(classification algorithm),逻辑回归名字的由来是有历史原因的。 + sigmoid函数在逻辑回归中站着重要的位置,sigmoid function ...
分类:
其他好文 时间:
2018-11-10 12:41:37
阅读次数:
238
虽然叫做“回归”,但是这个算法是用来解决分类问题的。回归与分类的区别在于:回归所预测的目标量的取值是连续的(例如房屋的价格);而分类所预测的目标变量的取值是离散的(例如判断邮件是否为垃圾邮件)。当然,为了便于理解,我们从二值分类(binary classification)开始,在这类分类问题中,y ...
分类:
其他好文 时间:
2018-11-07 15:28:24
阅读次数:
175
逻辑斯蒂回归(logistic regression) 是经典的分类方法。虽然名字中包含回归,但它被用来 分类 。 逻辑斯蒂分布 设 $X$ 是随机变量,$X$ 服从逻辑斯蒂分布是指 $X$ 的概率分布函数 $F(x)$ 和概率密度函数 $f(x)$ 为: $$F(x) = P(X \le x) = ...
分类:
其他好文 时间:
2018-11-04 22:54:34
阅读次数:
218
来源:https://www.cnblogs.com/jianxinzhou/p/4083921.html 1. The Problem of Overfitting (1) 还是来看预测房价的这个例子,我们先对该数据做线性回归,也就是左边第一张图。如果这么做,我们可以获得拟合数据的这样一条直线,但 ...
分类:
其他好文 时间:
2018-10-31 15:40:55
阅读次数:
142
Lecture6 Logistic Regression 逻辑回归 6.1 分类问题 Classification6.2 假设表示 Hypothesis Representation6.3 决策边界 Decision Boundary6.4 代价函数 Cost Function6.5 简化的代价函数 ...
分类:
其他好文 时间:
2018-10-31 10:33:47
阅读次数:
191
利用tensorflow实现数据的线性回归 导入相关库 import tensorflow as tf import numpy import matplotlib.pyplot as plt rng = numpy.random 参数设置 learning_rate = 0.01 training ...
分类:
其他好文 时间:
2018-10-31 01:05:45
阅读次数:
197
Lecture6 Logistic Regression 逻辑回归 6.1 分类问题 Classification6.2 假设表示 Hypothesis Representation6.3 决策边界 Decision Boundary6.4 代价函数 Cost Function6.5 简化的代价函数 ...
分类:
其他好文 时间:
2018-10-30 21:10:34
阅读次数:
248
Lecture1 Introduction and Basic Concepts 一、机器学习定义 二、机器学习算法 - Supervised learning 监督学习 - Unsupervised learning 无监督学习 - Reinforcement learning 强化学习 - Re ...
分类:
其他好文 时间:
2018-10-26 19:44:44
阅读次数:
127