1 #ifndef CAFFE_PARAMETER_LAYER_HPP_
2 #define CAFFE_PARAMETER_LAYER_HPP_
6 #include "caffe/layer.hpp"
10 template <
typename Dtype>
17 if (this->
blobs_.size() > 0) {
18 LOG(INFO) <<
"Skipping parameter initialization";
24 top[0]->Reshape(this->
layer_param_.parameter_param().shape());
28 virtual inline const char*
type()
const {
return "Parameter"; }
35 top[0]->ShareData(*(this->
blobs_[0]));
36 top[0]->ShareDiff(*(this->
blobs_[0]));
39 const vector<bool>& propagate_down,
const vector<
Blob<Dtype>*>& bottom)
virtual int ExactNumTopBlobs() const
Returns the exact number of top blobs required by the layer, or -1 if no exact number is required.
Definition: parameter_layer.hpp:30
virtual void LayerSetUp(const vector< Blob< Dtype > * > &bottom, const vector< Blob< Dtype > * > &top)
Does layer-specific setup: your layer should implement this function as well as Reshape.
Definition: parameter_layer.hpp:15
virtual const char * type() const
Returns the layer type.
Definition: parameter_layer.hpp:28
Definition: parameter_layer.hpp:11
vector< shared_ptr< Blob< Dtype > > > blobs_
Definition: layer.hpp:301
A wrapper around SyncedMemory holders serving as the basic computational unit through which Layers,...
Definition: blob.hpp:24
virtual void Forward_cpu(const vector< Blob< Dtype > * > &bottom, const vector< Blob< Dtype > * > &top)
Using the CPU device, compute the layer output.
Definition: parameter_layer.hpp:33
An interface for the units of computation which can be composed into a Net.
Definition: layer.hpp:33
virtual void Backward_cpu(const vector< Blob< Dtype > * > &top, const vector< bool > &propagate_down, const vector< Blob< Dtype > * > &bottom)
Using the CPU device, compute the gradients for any parameters and for the bottom blobs if propagate_...
Definition: parameter_layer.hpp:38
LayerParameter layer_param_
Definition: layer.hpp:297
A layer factory that allows one to register layers. During runtime, registered layers can be called b...
Definition: blob.hpp:14
virtual int ExactNumBottomBlobs() const
Returns the exact number of bottom blobs required by the layer, or -1 if no exact number is required.
Definition: parameter_layer.hpp:29
virtual void Reshape(const vector< Blob< Dtype > * > &bottom, const vector< Blob< Dtype > * > &top)
Adjust the shapes of top blobs and internal buffers to accommodate the shapes of the bottom blobs.
Definition: parameter_layer.hpp:26