Caffe Tutorial : 5.Layer Catalogue (Kor) [5.1.5] - ys7yoo/BrainCaffe GitHub Wiki
- 계층 타입: Input
- Doxygen 자료
- 헤더: ./include/caffe/layers/input_layer.hpp
- CPU 구현: ./src/caffe/layers/input_layer.cpp
파라미터(Parameters)
- 파라미터 (InputParameter input_param)
- ./src/caffe/proto/caffe.proto)에서는:
message InputParameter {
// 이 계층은 직접 할당되어진 N >= 1 top blob를 생산한다.
// N은 각 top에 대하여 shape를 설정하는 N shape를 정의한다.
// 1 shape는 모든 top에 대하여 같은 shape를 설정하기위해 정의한다.
// shape를 정의하지 않은것은 직접 reshaping한것을 따른다는 것이다.
repeated BlobShape shape = 1;
}