Home | History | Annotate | Download | only in training
      1 syntax = "proto3";
      2 
      3 package tensorflow;
      4 option cc_enable_arenas = true;
      5 
      6 // Protocol buffer representing the checkpoint state.
      7 //
      8 // TODO(touts): Add other attributes as needed.
      9 message CheckpointState {
     10   // Path to the most-recent model checkpoint.
     11   string model_checkpoint_path = 1;
     12 
     13   // Paths to all not-yet-deleted model checkpoints, sorted from oldest to
     14   // newest.
     15   // Note that the value of model_checkpoint_path should be the last item in
     16   // this list.
     17   repeated string all_model_checkpoint_paths = 2;
     18 }
     19