| 116 | void SetFilter(std::initializer_list<float> f) { PopulateTensor(filter_, f); } |
| 117 | |
| 118 | void SetBias(std::initializer_list<float> f) { PopulateTensor(bias_, f); } |
| 119 | |
| 120 | void SetInput(std::initializer_list<float> data) { |
| 121 | PopulateTensor(input_, data); |