W3cubDocs

/TensorFlow Python

tf.train.update_checkpoint_state

tf.train.update_checkpoint_state(
    save_dir,
    model_checkpoint_path,
    all_model_checkpoint_paths=None,
    latest_filename=None
)

Defined in tensorflow/python/training/saver.py.

See the guide: Variables > Saving and Restoring Variables

Updates the content of the 'checkpoint' file.

This updates the checkpoint file containing a CheckpointState proto.

Args:

  • save_dir: Directory where the model was saved.
  • model_checkpoint_path: The checkpoint file.
  • all_model_checkpoint_paths: List of strings. Paths to all not-yet-deleted checkpoints, sorted from oldest to newest. If this is a non-empty list, the last element must be equal to model_checkpoint_path. These paths are also saved in the CheckpointState proto.
  • latest_filename: Optional name of the checkpoint file. Default to 'checkpoint'.

Raises:

  • RuntimeError: If any of the model checkpoint paths conflict with the file containing CheckpointSate.

© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/train/update_checkpoint_state