| 40 | class BatchNormLayer : public Layer<Dtype> { |
| 41 | public: |
| 42 | explicit BatchNormLayer(const LayerParameter& param) |
| 43 | : Layer<Dtype>(param) {} |
| 44 | virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 45 | const vector<Blob<Dtype>*>& top); |
| 46 | virtual void Reshape(const vector<Blob<Dtype>*>& bottom, |
nothing calls this directly
no outgoing calls
no test coverage detected