| 19 | |
| 20 | template <typename Dtype> |
| 21 | void LSTMLayer<Dtype>::RecurrentOutputBlobNames(vector<string>* names) const { |
| 22 | names->resize(2); |
| 23 | (*names)[0] = "h_" + format_int(this->T_); |
| 24 | (*names)[1] = "c_T"; |
| 25 | } |
| 26 | |
| 27 | template <typename Dtype> |
| 28 | void LSTMLayer<Dtype>::RecurrentInputShapes(vector<BlobShape>* shapes) const { |
nothing calls this directly
no test coverage detected