NIUHE
日々私たちが过ごしている日常というのは、実は奇迹の连続なのかもしれんな
隐马尔科夫模型(HMM)
深入理解EM算法
In statistics, an expectation–maximization (EM) algorithm is an iterative method for finding maximum likelihood or maximum a posteriori (MAP) estimates of parameters in statistical models, where the model depends on unobserved latent variables.
深入理解聚类算法
深入理解SVM
提升方法:GBDT , XGBOOST & AdaBoost
决策树 & 随机森林中的公式推导
决策树学习的生成算法主要有三种: * ID3 * Iterative Dichotomiser * C4.5 * CART * Classification And Regression Tree
决策树建立就是从特征中选择一个作为分类条件把样本划分为两个子集,然后对每个子集做同样的事情直到每个子集都属于相同的标签。所以建立决策树的关键在于每次划分子集的时候选择哪个特征,这也是上面三种算法的最主要区别,下面将一一探讨。
线性回归中的一些公式推导
使用极大似然估计推导损失函数
回归方程
\[h_\theta(x) = \sum^n_{i=0}\theta_ix_i = \theta^Tx\]
考虑任意一样本 \(y^{(i)}\) ,则有: \[y^{(i)} = \theta^Tx^{(i)} + \epsilon^{(i)}\] 其中 \(\epsilon^{(i)}\) 是误差。
决策树之ID3算法详解
Understanding RNN&LSTM Networks
转载自:http://colah.github.io/posts/2015-08-Understanding-LSTMs/