
caffe
文章平均质量分 84
ayst123
这个作者很懒,什么都没留下…
展开
-
Layers
Vision_layers.hpp (和视觉有关的layers)ConvolutionLayer,原创 2014-08-22 06:07:14 · 2617 阅读 · 0 评论 -
Caffe Prediction
correct me if I am wrongBGR or RGB?Caffe use opencv to convert image to datum. The channels will be disordered to BGR rather than RGB by OpenCV. It means all blobs in caffe are in the BGR format. Whe原创 2015-03-12 16:20:41 · 7411 阅读 · 2 评论 -
Caffe Notes: Caffe.cpp
1-Google Flag1-1 Define Flags1-2 Accessing Flag1-3 Set up Flags2-2 Part 22-2 Part 2BrewFunction1-Google FlagDocument is How To Use Google Commandline Flags, where All materials discussed below co原创 2015-05-25 07:16:00 · 2473 阅读 · 0 评论 -
Python lmdb
最近从 leveldb 转到 lmdb, 需要用python实现。观察caffe里,db里 保存的都是datum format, 所以datum就变成了中转中心。用python 调用levedb的函数在这里 这里是 lmdb documentswritedb_img = lmdb.Environment(lmdb_img_name,map_size=int(1e12))txn_img = db_原创 2015-03-05 09:20:41 · 19381 阅读 · 6 评论 -
Caffe Installation
以下安装步骤针对将所有依赖软件和caffe都安装在自己的 linux 账户下, 除了cuda/6.5首先安装 boost,Boost1. download boost.tar.gz (google boost library)2. tar -zxvf boost.tar.gz 3. cd boost4. ./bootstrap.sh5. mkdir build6.原创 2015-03-03 11:02:53 · 1049 阅读 · 0 评论 -
Caffe: Softmax_Loss layer
先占坑,以后补全。今天遇到softmax_loss Layer的问题,在网上找到Chiyuan Zhang学长的这篇文章。终于明白了为什么在计算中它会减去最大的一个值。有时间要自己搞清楚, 再写下来。原创 2015-03-06 09:26:32 · 1747 阅读 · 1 评论 -
protobuf
以下的文字基本基于这phttp://blog.youkuaiyun.com/flyan338/article/details/8448518原创 2014-08-11 07:04:22 · 1473 阅读 · 0 评论 -
net.cpp (init)
net 这个class 定义了包含其中的各个layer,原创 2014-08-12 08:38:54 · 2664 阅读 · 0 评论 -
Caffe Convolutional Layer 记录
Caffe Convolutional Layer 记录先丛底层函数写起,依次讲解 Convolutional Layer 的 Forward 和 Backward 的函数Forward_Cpucblas_dgemm(/src/caffe/util/math_function.cpp) cblas_dgemm 是 blas的一个函数,d 代表 double-precision (single-pr原创 2015-02-24 12:33:49 · 5537 阅读 · 4 评论