HomeSort by relevance Sort by last modified time
    Searched refs:all_model_checkpoint_paths (Results 1 - 10 of 10) sorted by null

  /external/tensorflow/tensorflow/python/training/
checkpoint_management.py 62 all_model_checkpoint_paths=None,
70 all_model_checkpoint_paths: List of strings. Paths to all not-yet-deleted
82 all_model_checkpoint_paths updated to either absolute paths or
87 does not match `all_model_checkpoint_paths`.
89 if all_model_checkpoint_paths is None:
90 all_model_checkpoint_paths = []
92 if (not all_model_checkpoint_paths or
93 all_model_checkpoint_paths[-1] != model_checkpoint_path):
94 logging.info("%s is not in all_model_checkpoint_paths. Manually adding it.",
96 all_model_checkpoint_paths.append(model_checkpoint_path
    [all...]
checkpoint_management_test.py 164 self.assertEqual(len(ckpt.all_model_checkpoint_paths), 1)
165 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], abs_path)
175 self.assertEqual(len(ckpt.all_model_checkpoint_paths), 1)
176 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], new_rel_path)
183 save_dir, abs_path, all_model_checkpoint_paths=paths)
187 len(ckpt.all_model_checkpoint_paths), len(paths) if paths else 1)
188 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], abs_path)
199 train_dir, rel_path, all_model_checkpoint_paths=[abs_path, rel_path])
202 self.assertEqual(len(ckpt.all_model_checkpoint_paths), 2)
203 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], rel_path
    [all...]
saver_test.py     [all...]
session_manager.py 221 saver.recover_last_checkpoints(ckpt.all_model_checkpoint_paths)
saver.py     [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
graph_actions_test.py 133 all_ckpt_paths = ckpt_state.all_model_checkpoint_paths
443 all_ckpt_paths = ckpt_state.all_model_checkpoint_paths
  /external/tensorflow/tensorflow/python/training/tracking/
util.py     [all...]
util_test.py     [all...]
  /external/tensorflow/tensorflow/python/keras/engine/
network.py     [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
estimator_test.py 721 ckpt.all_model_checkpoint_paths)
    [all...]

Completed in 851 milliseconds