Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tensorboard/plugins/projector/projector_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,9 @@ def _read_latest_config_files(self, run_path_pairs):
if ckpt_path:
config.model_checkpoint_path = ckpt_path

# Sanity check for the checkpoint file.
# Sanity check for the checkpoint file existing.
if (config.model_checkpoint_path and _using_tf() and
not tf.compat.v1.train.checkpoint_exists(config.model_checkpoint_path)):
not tf.io.gfile.glob(config.model_checkpoint_path + '*')):
logger.warn('Checkpoint file "%s" not found',
config.model_checkpoint_path)
continue
Expand Down