| 14 | class PythonLayer : public Layer<Dtype> { |
| 15 | public: |
| 16 | PythonLayer(PyObject* self, const LayerParameter& param) |
| 17 | : Layer<Dtype>(param), self_(bp::handle<>(bp::borrowed(self))) { } |
| 18 | |
| 19 | virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 20 | const vector<Blob<Dtype>*>& top) { |
nothing calls this directly
no outgoing calls
no test coverage detected