| 134 | } |
| 135 | |
| 136 | void Net_Save(const Net<Dtype>& net, string filename) { |
| 137 | NetParameter net_param; |
| 138 | net.ToProto(&net_param, false); |
| 139 | WriteProtoToBinaryFile(net_param, filename.c_str()); |
| 140 | } |
| 141 | |
| 142 | void Net_SaveHDF5(const Net<Dtype>& net, string filename) { |
| 143 | net.ToHDF5(filename); |
nothing calls this directly
no test coverage detected