| 6 | |
| 7 | template <typename Dtype> |
| 8 | void ThresholdLayer<Dtype>::LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 9 | const vector<Blob<Dtype>*>& top) { |
| 10 | NeuronLayer<Dtype>::LayerSetUp(bottom, top); |
| 11 | threshold_ = this->layer_param_.threshold_param().threshold(); |
| 12 | } |
| 13 | |
| 14 | template <typename Dtype> |
| 15 | void ThresholdLayer<Dtype>::Forward_cpu(const vector<Blob<Dtype>*>& bottom, |
nothing calls this directly
no outgoing calls
no test coverage detected