| 161 | } |
| 162 | |
| 163 | void Net_LoadHDF5(Net<Dtype>* net, string filename) { |
| 164 | net->CopyTrainedLayersFromHDF5(filename.c_str()); |
| 165 | } |
| 166 | |
| 167 | void Net_SetInputArrays(Net<Dtype>* net, bp::object data_obj, |
| 168 | bp::object labels_obj) { |
nothing calls this directly
no test coverage detected