| 23 | class SigmoidLayer : public NeuronLayer<Dtype> { |
| 24 | public: |
| 25 | explicit SigmoidLayer(const LayerParameter& param) |
| 26 | : NeuronLayer<Dtype>(param) {} |
| 27 | |
| 28 | virtual inline const char* type() const { return "Sigmoid"; } |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected