Home
last modified time | relevance | path

Searched refs:model_checkpoint_path (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/python/training/
Dcheckpoint_management.py61 model_checkpoint_path, argument
93 all_model_checkpoint_paths[-1] != model_checkpoint_path):
95 model_checkpoint_path)
96 all_model_checkpoint_paths.append(model_checkpoint_path)
109 if not os.path.isabs(model_checkpoint_path):
110 model_checkpoint_path = os.path.relpath(model_checkpoint_path, save_dir)
117 model_checkpoint_path=model_checkpoint_path,
131 model_checkpoint_path, argument
163 model_checkpoint_path=model_checkpoint_path,
172 model_checkpoint_path, argument
[all …]
Dcheckpoint_state.proto9 string model_checkpoint_path = 1; field
13 // Note that the value of model_checkpoint_path should be the last item in
Dcheckpoint_management_test.py162 self.assertEqual(ckpt.model_checkpoint_path, abs_path)
163 self.assertTrue(os.path.isabs(ckpt.model_checkpoint_path))
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)
258 self.assertEqual(ckpt.model_checkpoint_path,
Dsaver.py1171 model_checkpoint_path = self.saver_def.save_tensor_name
1173 model_checkpoint_path = sess.run(
1177 model_checkpoint_path = compat.as_str(model_checkpoint_path)
1179 self._RecordLastCheckpoint(model_checkpoint_path)
1182 model_checkpoint_path=model_checkpoint_path,
1206 return model_checkpoint_path
Dsession_manager.py210 while not ckpt or not ckpt.model_checkpoint_path:
220 saver.restore(sess, ckpt.model_checkpoint_path)
Dsaver_test.py1119 def assertCheckpointState(self, model_checkpoint_path, argument
1122 self.assertEqual(checkpoint_state.model_checkpoint_path,
1123 model_checkpoint_path)
1141 model_checkpoint_path=s1,
1150 model_checkpoint_path=s2,
1160 model_checkpoint_path=s3,
1177 model_checkpoint_path=s2,
1187 model_checkpoint_path=s1,
1212 model_checkpoint_path=s1,
1221 model_checkpoint_path=s2,
[all …]
/external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
Dcifar10_eval.py61 if ckpt and ckpt.model_checkpoint_path:
63 saver.restore(sess, ckpt.model_checkpoint_path)
67 global_step = ckpt.model_checkpoint_path.split('/')[-1].split('-')[-1]
/external/tensorflow/tensorflow/python/compiler/tensorrt/test/testdata/
Dcheckpoint1 model_checkpoint_path: "model.ckpt-46900"
/external/tensorflow/tensorflow/contrib/tensorboard/plugins/projector/
Dprojector_api_test.py38 config.model_checkpoint_path = 'test'
Dprojector_config.proto41 string model_checkpoint_path = 1; field
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.train.pbtxt309 …argspec: "args=[\'save_dir\', \'model_checkpoint_path\', \'all_model_checkpoint_paths\', \'all_mod…
461 …argspec: "args=[\'save_dir\', \'model_checkpoint_path\', \'all_model_checkpoint_paths\', \'latest_…
/external/tensorflow/tensorflow/contrib/learn/python/learn/
Dgraph_actions_test.py131 primary_ckpt_path = ckpt_state.model_checkpoint_path
441 primary_ckpt_path = ckpt_state.model_checkpoint_path
/external/tensorflow/tensorflow/python/training/tracking/
Dutil.py1370 model_checkpoint_path=file_path,
1673 model_checkpoint_path=file_path,
/external/tensorflow/tensorflow/python/keras/engine/
Dnetwork.py1420 model_checkpoint_path=filepath,
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
Destimator_test.py717 self.assertEqual(ckpt.model_checkpoint_path, 'model.ckpt-5')