| 446 | |
| 447 | template <typename Dtype> |
| 448 | string Solver<Dtype>::SnapshotFilename(const string extension) { |
| 449 | return param_.snapshot_prefix() + "_iter_" + caffe::format_int(iter_) |
| 450 | + extension; |
| 451 | } |
| 452 | |
| 453 | template <typename Dtype> |
| 454 | string Solver<Dtype>::SnapshotToBinaryProto() { |
nothing calls this directly
no test coverage detected