
深度学习
mht1829
这个作者很懒,什么都没留下…
展开
-
论文PCANet: A Simple Deep Learning Baseline for Image Classification?的matlab源码解读(一)
本文参考的文献 http://www.lai18.com/content/1452306.html https://my.oschina.net/Ldpe2G/blog/275922http://blog.youkuaiyun.com/funny75/article/details/50937302 matlab源码注释http://blog.youkuaiyun.com/u0143658原创 2016-09-29 21:29:14 · 2849 阅读 · 1 评论 -
py-faster-rcnn+VGG_CNN_M_1024训练自己数据需要修改的参数小记
运行环境:cpu训练图片大小为300*330,类别数11。1.修改VGG_CNN_M_1024模型配置文件1)solver.protxt文件stepsize原先为10000,根据需要更改。2)train.protxt文件“input-data”层的‘num_class’数值改为11;“rpn-data”层的feat_stride由原先的16改为8;“prop原创 2017-03-03 14:34:55 · 5629 阅读 · 6 评论 -
py-faster-rcnn+cpu配置并训练自己的数据
py-faster-rcnn的配置具体参考github主页https://github.com/rbgirshick/py-faster-rcnn,并且下载时一定要使用--recursive递归下载。cpu模式下需要修改几个配置文件,具体可参考博客http://www.cnblogs.com/justinzhang/p/5386837.html配置起来并不麻烦,但是运行./tools/demo原创 2017-01-14 19:06:45 · 4484 阅读 · 1 评论 -
faster-rcnn+ubuntu14.04+matlab2014a+cpu配置
主要可以参考Ubuntu14.04下配置测试Faster R-CNN这篇博客注意这里用的caffe不是通用的caffe,用git命令要递归下载。不过用git命令下载感觉好慢,不知道别人是不是也这样,可以直接在网页上下载好后解压到本地。按照博客中的步骤并没有编译成功,在make test时报如下错误Unknown V1LayerParameter Layer type: 40原创 2016-12-27 17:52:33 · 1463 阅读 · 0 评论 -
caffe-windows 通过Anaconda2配置python 接口
首先安装Anaconda2,可以看网上教程。我本来电脑有python2.7 的32位的版本,发现编译python接口不成功,具体32位的python能不能成功我不能肯定。不过为了方便我还是准备重装64位的python。使用Anaconda2很方便,不过安装好的python时在Anaconda2的环境中的。 安装caffe-windows 我配置的是无GPU版本,具体配置步骤看参考http原创 2016-12-16 21:40:40 · 1854 阅读 · 0 评论 -
caffe-windows训练自己的数据(1)
caffe-windows训练自己的数据--将图片数据转换成leveldb遇到的问题,使用windows的bat批处理文件实现原创 2016-11-28 09:28:16 · 605 阅读 · 0 评论 -
论文PCANet: A Simple Deep Learning Baseline for Image Classification?的matlab源码解读(二)
PCANet_output.mfunction [OutImg OutImgIdx] = PCA_output(InImg, InImgIdx, PatchSize, NumFilters, V)% Computing PCA filter outputs 减去均值样本矩阵 * 特征向量就是PCA的输出% ======== INPUT ============% InImg原创 2016-09-30 13:36:16 · 1154 阅读 · 0 评论 -
论文PCANet: A Simple Deep Learning Baseline for Image Classification?的matlab源码解读(三)
function [f BlkIdx] = HashingHist(PCANet,ImgIdx,OutImg)% Output layer of PCANet (Hashing plus local histogram)% ========= INPUT ============% PCANet PCANet parameters (struct)% .PCANet.NumSt原创 2016-09-30 10:24:35 · 1439 阅读 · 1 评论 -
论文PCANet: A Simple Deep Learning Baseline for Image Classification?的matlab源码解读(四)
PCANet_train.m函数function [f V BlkIdx] = PCANet_train(InImg,PCANet,IdtExt)% =======INPUT=============% InImg Input images (cell); each cell can be either a matrix (Gray) or a 3D tensor (RGB)原创 2016-09-30 11:02:08 · 1315 阅读 · 0 评论 -
在windows下配置R-CNN detection selective_search_ijcv_with_python目标检测
今天终于跑通了RCNN目标检测代码,说实话为了实现目标检测我试着在windows上配置各种检测框架,fast-RCNN,faster_RCNN,RFCN,SSD。好吧最终没一个成功的,windows上的配置真心不是一般繁琐,而且的电脑配置低,只能用CPU。诶,在windows上配置真是能折腾死人,旁边又没人可问,只能自己瞎搞瞎搞,以后还是用ubuntu吧。。。。先上个我跑通后的图,我只试了一张原创 2016-12-23 09:28:31 · 2444 阅读 · 14 评论