| 151 | } |
| 152 | |
| 153 | void Net_Save(const Net<Dtype>& net, string filename) { |
| 154 | NetParameter net_param; |
| 155 | net.ToProto(&net_param, false); |
| 156 | WriteProtoToBinaryFile(net_param, filename.c_str()); |
| 157 | } |
| 158 | |
| 159 | void Net_SaveHDF5(const Net<Dtype>& net, string filename) { |
| 160 | net.ToHDF5(filename); |
nothing calls this directly
no test coverage detected