如何向caffe中添加层

Posted HugoLester

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何向caffe中添加层相关的知识,希望对你有一定的参考价值。

修改caffe\src\caffe\proto\caffe.proto

在最后添加centerloss层的参数信息

 

message CenterLossParameter {
optional uint32 num_output = 1; // The number of outputs for the layer
optional FillerParameter center_filler = 2; // The filler for the centers
// The first axis to be lumped into a single inner product computation;
// all preceding axes are retained in the output.
// May be negative to index from the end (e.g., -1 for the last axis).
optional int32 axis = 3 [default = 1];
}

 

添加层类型信息,注意不能与其他层的数字相同。

 

optional CenterLossParameter center_loss_param = 148;

将cpu和gpu两个模式下运行的文件添加到src\caffe\layers\

如何编写层,请查看官方文档或者谷歌

3.添加层的头文件

向\include\caffe\layers\中添加头文件

 

以上是关于如何向caffe中添加层的主要内容,如果未能解决你的问题,请参考以下文章

caffe-windows添加层

Caffe学习系列(15):添加新层

caffe中的前向传播和反向传播

caffe中应该如何使用“BatchNorm”层?

如何在Caffe中配置每一个层的结构

如何知道 CAFFE 代码是使用 GPU 还是 CUDA 代码运行?