| 12 | |
| 13 | template <typename Dtype> |
| 14 | void RNNLayer<Dtype>::RecurrentInputBlobNames(vector<string>* names) const { |
| 15 | names->resize(1); |
| 16 | (*names)[0] = "h_0"; |
| 17 | } |
| 18 | |
| 19 | template <typename Dtype> |
| 20 | void RNNLayer<Dtype>::RecurrentOutputBlobNames(vector<string>* names) const { |