随笔分类 -  machine learning

Materials about machine learning theories, e.g. EM, HMM, CRF, LDA.
摘要:1. What is the LDA?LDA(latent dilichlet allocation) is a method to assign the topic (distribution) of a given document. However, note that this model ... 阅读全文
posted @ 2014-05-07 15:46 little_hsu 阅读(239) 评论(0) 推荐(0)
摘要:1.方向梯度直方图(Histogramof Oriented Gradient, HOG)特征是一种在计算机视觉和图像处理中用来进行物体检测的特征描述子。它通过计算和统计图像局部区域的梯度方向直方图来构成特征。基本知识可以参考博客:http://blog.csdn.net/zouxy09/art... 阅读全文
posted @ 2014-05-06 20:30 little_hsu 阅读(1010) 评论(0) 推荐(0)
摘要:1. 推导出函数间隔最小 2. 约束优化函数变形至如下形式 /*min 1/2*||w||^2s.t. (w[i]*x[i] + b[i] - y[i]) >= 0;*/ 3. 对偶函数 /*min(para alpha) 1/2*sum(i)sum(j)(alpha[i]*alpha[j]*y[i... 阅读全文
posted @ 2014-05-06 20:26 little_hsu 阅读(4019) 评论(0) 推荐(0)
摘要:写在前面:本文仅为记录编程经验和思路,所给程序并无识别作用(可能是由于特征太少)。程序主要实现功能:时间紧迫...这个程序效果很差,只能算个demo。但是还是实现了一下几个主要功能,代码全部为自己编写。1. 完成了adaboost框架。2. logistic二值分类作为弱分类器,使用梯度下降法计算(... 阅读全文
posted @ 2013-06-17 00:39 little_hsu 阅读(201) 评论(0) 推荐(0)