caffe
山野闲者
这个作者很懒,什么都没留下…
展开
-
caffe分类学习及问题
caffe环境配置参考网站:https://www.cnblogs.com/go-better/p/7161006.html1.分类实现过程参考网站:https://blog.csdn.net/gaohuazhao/article/details/69568267特别详细的一个教程……2.训练自己的数据集遇到的问题1)用python生成的train.txt和val.txt,对此...原创 2018-04-19 22:45:44 · 1721 阅读 · 0 评论 -
学习faster-rcnn遇到的问题
1.参数scales问题更改py-faster-rcnn/lib/rpn/generate_anchors.py中函数generate_anchors,其中参数scales出现的问题 Check failed: outer_num_ * inner_num_ == bottom[1]->count() (21546 vs. 35910) Number of labels must ...原创 2018-03-27 11:05:14 · 2832 阅读 · 3 评论 -
Makefile编译问题----C++调用caffe
Makefile编译问题(其实也是C++调用caffe,如何在Linux下编译运行的问题)博文https://blog.csdn.net/zxj942405301/article/details/71799279中只给出了MTCNN.h和MTCNN.cpp,需要自己写main.cpp,所以若只是想让编译通过,我写了一个简单的demo:#include <iostream>#...原创 2018-07-28 12:37:24 · 436 阅读 · 0 评论 -
caffe源码_tanh_layer
1、各层实现的简单框架参考网站:https://github.com/BVLC/caffe/wiki/Simple-Example:-Sin-Layer目前的理解:每一层的代码框架都可以单独编写,并且可以测试自己写的层的代码能否通过。我这里以tanh_layer为例。1)tanh_layer.hpp定义了ReLULayer的类,链接了protobuf,声明了前向传播、反向传播函...原创 2018-09-17 16:10:31 · 371 阅读 · 0 评论 -
caffe源码_concat_layer
参考网站:https://blog.csdn.net/bailufeiyan/article/details/50876728主要功能:将多个输入bottom中的blob连接起来,但这种是按连接轴axis确定不同连接方式:0-按行连接,1-按列连接举例说明:a1=[[1,2,3],[4,5,6]]; a2=[[7,8,9],[10,11,12]],连接a1与a2axis:0状态:[[1...原创 2018-10-22 20:59:33 · 321 阅读 · 0 评论 -
caffe源码_convolutional layer
参考网站1:https://blog.csdn.net/jyl1999xxxx/article/details/58161181参考网站2:https://blog.csdn.net/jiongnima/article/details/69736844卷积层的原理直接一张图表示:参考网站3:https://www.zhihu.com/question/28385679caffe...原创 2018-10-24 11:31:17 · 282 阅读 · 0 评论 -
caffe源码_自定义加法层
参考网站1:https://blog.csdn.net/kkk584520/article/details/52721838参考网站2:https://blog.csdn.net/seven_first/article/details/47378697#1-caffecpugemm-%E5%87%BD%E6%95%B0 系统:Ubuntu16.04环境:caffe知识背景:了解...原创 2018-10-30 17:03:40 · 486 阅读 · 0 评论