1. Modeling seasonality w1 models the linear trend of the overall process. w2 models the seasonal component sinusoid with a period of 12 and you do no ...
分类:
其他好文 时间:
2017-05-02 23:35:09
阅读次数:
179
1. Convex and concave functions Concave is the upside-down of the convex function and convex is a bow-shaped function 2. Stepsize common choice: as th ...
分类:
其他好文 时间:
2017-05-01 18:20:17
阅读次数:
202
softmax和sigmoid实际上都是属于logistic regression,sigmoid是二分类的lr,拟合Bernoulli distribution(二项分布);0softmax是多分类的lr,拟合Multinomial distribution(多项分布)。 sigmoid函数可以很 ...
分类:
其他好文 时间:
2017-05-01 18:18:00
阅读次数:
267
http://freemind.pluskid.org/machine-learning/softmax-vs-softmax-loss-numerical-stability/ softmax 在 Logistic Regression 里起到的作用是将线性预测值转化为类别概率 ...
分类:
其他好文 时间:
2017-05-01 17:02:56
阅读次数:
209
维基上corss entropy的一部分 知乎上也有一个类似问题:https://www.zhihu.com/question/36307214 cross entropy有二分类和多分类的形式,分别对应sigmoid和softmax ...
分类:
其他好文 时间:
2017-05-01 13:36:04
阅读次数:
168
简介:Libsvm is a simple, easy-to-use, and efficient software for SVM classification and regression. It solves C-SVM classification, nu-SVM classificatio ...
分类:
其他好文 时间:
2017-05-01 12:51:30
阅读次数:
470
1. Multiple Features note:X0 is equal to 1 2. Feature Scaling Idea: make sure features are on a similiar scale, approximately a -1<Xi<1 range For exam ...
分类:
其他好文 时间:
2017-05-01 12:06:43
阅读次数:
199
必做: [*] warmUpExercise.m - Simple example function in Octave/MATLAB[*] plotData.m - Function to display the dataset[*] computeCost.m - Function to com ...
分类:
系统相关 时间:
2017-04-29 09:53:43
阅读次数:
302
术语监督学习,意指给出一个算法,需要部分数据集已经有正确的答案。 “ 分类和回归的区别在于输出变量的类型。 定量输出称为回归,或者说是连续变量预测;定性输出称为分类,或者说是离散变量预测。 ” 回归是监督学习的一部分,通常是用来预测一个连续值的输出,比如房价的预测,是一个标量值,是一个连续值的数。 ...
分类:
其他好文 时间:
2017-04-29 01:16:30
阅读次数:
190
二、单变量线性回归(Linear Regression with One Variable) 2.1 模型表示 2.2 代价函数 2.3 代价函数的直观理解 2.4 梯度下降 2.5 梯度下降的直观理解 2.6 梯度下降的线性回归 2.7 接下来的内容 2.1 模型表示 之前的房屋交易问题为例,假使 ...
分类:
其他好文 时间:
2017-04-22 19:45:43
阅读次数:
277