1 #ifndef CAFFE_INPUT_LAYER_HPP_
2 #define CAFFE_INPUT_LAYER_HPP_
6 #include "caffe/blob.hpp"
7 #include "caffe/layer.hpp"
8 #include "caffe/proto/caffe.pb.h"
18 template <
typename Dtype>
21 explicit InputLayer(
const LayerParameter& param)
29 virtual inline const char*
type()
const {
return "Input"; }
37 const vector<bool>& propagate_down,
const vector<
Blob<Dtype>*>& bottom) {}
42 #endif // CAFFE_INPUT_LAYER_HPP_
A wrapper around SyncedMemory holders serving as the basic computational unit through which Layers,...
Definition: blob.hpp:24
An interface for the units of computation which can be composed into a Net.
Definition: layer.hpp:33
A layer factory that allows one to register layers. During runtime, registered layers can be called b...
Definition: blob.hpp:14