| 196 | void SetBias(std::initializer_list<float> f) { PopulateTensor(bias_, f); } |
| 197 | |
| 198 | void SetWeights(std::initializer_list<float> f) { |
| 199 | PopulateTensor(weights_, f); |
| 200 | } |
| 201 | |
| 202 | void SetRecurrentWeights(std::initializer_list<float> f) { |
| 203 | PopulateTensor(recurrent_weights_, f); |