摘要:
svm导出的原始问题然后利用KKT条件,为何还需要对偶空间? 一方面,实际上KKT条件怎么得到的?KKT条件的推导是:svm原始问题->极大极小问题(先算极小这步,但极小这步中α是有约束的,不好求)->满足某些条件(如凸的等)->极小极大问题(先算极大这步,α约束条件跑到第二步,极大这步没约束... 阅读全文
2015年10月5日
2015年10月4日
摘要:
参考文献特征提取是机器学习的准备工作。一、特征大体上分几种呢有人分:high features 和low features. high features 指比较泛的特征;low features 指相对具体的特征。有人分:具体特征,原始特征(不加工raw),抽象特征。总体上,Low Level 比较... 阅读全文
2015年9月27日
摘要:
写得太好,还是忍不住把链接mark一下:http://blog.echen.me/2012/01/03/introduction-to-conditional-random-fields/http://lhdgriver.gotoip1.com/%E6%9D%A1%E4%BB%B6%E9%9A%8F... 阅读全文
2015年9月16日
摘要:
分类:把图片输进去,输出类别。对位置,大小不要求检测:把图片输进去,输出类别,位置,大小识别:有时不再考虑位置,但有时相当于检测+识别,又很容易和分类混在一起分类:有人无人检测:有人吗?人在哪里?用多大的box框出来识别:有人吗?人在哪里?用多大的box框出来!还有这个人是谁?(“进一步分类”) 阅读全文
2015年9月14日
摘要:
% % file=dir('/home/wang/Desktop/trainset/others/');% % for i=3:length(file)% % path= strcat('/home/wang/Desktop/trainset/others/',file(i).name,'... 阅读全文
摘要:
file=dir('/home/wang/Desktop/trainset/others/');for i=3:length(file) path= strcat('/home/wang/Desktop/trainset/other/',file(i).name,'\n'); %sa... 阅读全文
2015年9月8日
摘要:
file=dir('D:\Program Files\MATLAB\R2014a\bin\MyPro\OCR\图像中时间识别\')for i=3:length(file) path= strcat('D:\Program Files\MATLAB\R2014a\bin\MyPro\OCR\图... 阅读全文
摘要:
%file=dir('D:\dataset\temp');file=dir('D:\dataset\INRIAPerson\test_64x128_H96\pos');for i=3:length(file)% path= strcat('D:\dataset\temp\',file(i).n... 阅读全文
摘要:
http://jingyan.baidu.com/article/1612d5004095eee20e1eeeab.htmlsudo 7z x ***.rar 阅读全文
2015年9月7日
摘要:
makefile##################################################### Generic makefile - 万能Makefile# for compiling and linking C++ projects on Linux # Author:... 阅读全文