| 28 | } |
| 29 | |
| 30 | const std::string DebugString() const { |
| 31 | return tensorflow::strings::StrCat( |
| 32 | "full_ckpt_version: ", std::to_string(full_ckpt_version), |
| 33 | "\nfull_ckpt_name: ", full_ckpt_name, |
| 34 | "\ndelta_ckpt_version: ", std::to_string(delta_ckpt_version), |
| 35 | "\ndelta_ckpt_name: ", delta_ckpt_name, |
| 36 | "\nsavedmodel_dir: ", savedmodel_dir); |
| 37 | } |
| 38 | |
| 39 | bool IsFullModel() const { |
| 40 | return delta_ckpt_name.empty(); |
no test coverage detected