| 39 | |
| 40 | template <typename Dtype> |
| 41 | void LSTMLayer<Dtype>::OutputBlobNames(vector<string>* names) const { |
| 42 | names->resize(1); |
| 43 | (*names)[0] = "h"; |
| 44 | } |
| 45 | |
| 46 | template <typename Dtype> |
| 47 | void LSTMLayer<Dtype>::FillUnrolledNet(NetParameter* net_param) const { |
nothing calls this directly
no outgoing calls
no test coverage detected