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

  /external/tensorflow/tensorflow/python/training/
checkpoint_management.py 61 model_checkpoint_path,
69 model_checkpoint_path: The checkpoint file.
72 the last element must be equal to model_checkpoint_path. These paths
81 CheckpointState proto with model_checkpoint_path and
93 all_model_checkpoint_paths[-1] != model_checkpoint_path):
95 model_checkpoint_path)
96 all_model_checkpoint_paths.append(model_checkpoint_path)
107 # if model_checkpoint_path already contains "save_dir".
109 if not os.path.isabs(model_checkpoint_path):
110 model_checkpoint_path = os.path.relpath(model_checkpoint_path, save_dir
    [all...]
checkpoint_management_test.py 162 self.assertEqual(ckpt.model_checkpoint_path, abs_path)
163 self.assertTrue(os.path.isabs(ckpt.model_checkpoint_path))
170 # model_checkpoint_path should have no "train" directory part.
174 self.assertEqual(ckpt.model_checkpoint_path, new_rel_path)
184 self.assertEqual(ckpt.model_checkpoint_path, abs_path)
185 self.assertTrue(os.path.isabs(ckpt.model_checkpoint_path))
201 self.assertEqual(ckpt.model_checkpoint_path, rel_path)
215 model_checkpoint_path=abs_path2,
224 self.assertEqual(ckpt.model_checkpoint_path, rel_path2)
231 self.assertEqual(ckpt.model_checkpoint_path, abs_path2
    [all...]
saver.py     [all...]
session_manager.py 210 while not ckpt or not ckpt.model_checkpoint_path:
220 saver.restore(sess, ckpt.model_checkpoint_path)
saver_test.py     [all...]
  /external/tensorflow/tensorflow/contrib/tensorboard/plugins/projector/
projector_config.proto 41 string model_checkpoint_path = 1;
projector_api_test.py 38 config.model_checkpoint_path = 'test'
  /external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
cifar10_eval.py 61 if ckpt and ckpt.model_checkpoint_path:
63 saver.restore(sess, ckpt.model_checkpoint_path)
64 # Assuming model_checkpoint_path looks something like:
67 global_step = ckpt.model_checkpoint_path.split('/')[-1].split('-')[-1]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
graph_actions_test.py 131 primary_ckpt_path = ckpt_state.model_checkpoint_path
441 primary_ckpt_path = ckpt_state.model_checkpoint_path
  /external/tensorflow/tensorflow/python/training/tracking/
util.py     [all...]
  /external/tensorflow/tensorflow/python/keras/engine/
network.py     [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
estimator_test.py 717 self.assertEqual(ckpt.model_checkpoint_path, 'model.ckpt-5')
    [all...]

Completed in 369 milliseconds