| 41 | } // namespace tensorflow |
| 42 | |
| 43 | int main(int argc, char** argv) { |
| 44 | tensorflow::port::InitMain(argv[0], &argc, &argv); |
| 45 | if (argc != 2) { |
| 46 | fprintf(stderr, "Usage: %s checkpoint_file\n", argv[0]); |
| 47 | exit(1); |
| 48 | } |
| 49 | return tensorflow::InspectCheckpoint(argv[1]); |
| 50 | } |
nothing calls this directly
no test coverage detected