Home
last modified time | relevance | path

Searched refs:all_model_checkpoint_paths (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/python/training/
Dcheckpoint_management.py69 all_model_checkpoint_paths=None, argument
96 if all_model_checkpoint_paths is None:
97 all_model_checkpoint_paths = []
99 if (not all_model_checkpoint_paths or
100 all_model_checkpoint_paths[-1] != model_checkpoint_path):
103 all_model_checkpoint_paths.append(model_checkpoint_path)
107 != len(all_model_checkpoint_paths))):
111 % (all_model_checkpoint_paths, all_model_checkpoint_timestamps))
118 for i, p in enumerate(all_model_checkpoint_paths):
120 all_model_checkpoint_paths[i] = os.path.relpath(p, save_dir)
[all …]
Dcheckpoint_management_test.py164 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 …]
Dcheckpoint_state.proto15 repeated string all_model_checkpoint_paths = 2; field
16 // Unix timestamps corresponding to all_model_checkpoint_paths, indicating
Dsaver_test.py1249 all_model_checkpoint_paths, save_dir): argument
1253 self.assertEqual(checkpoint_state.all_model_checkpoint_paths,
1254 all_model_checkpoint_paths)
1271 all_model_checkpoint_paths=[s1],
1280 all_model_checkpoint_paths=[s1, s2],
1290 all_model_checkpoint_paths=[s2, s3],
1307 all_model_checkpoint_paths=[s3, s2],
1317 all_model_checkpoint_paths=[s2, s1],
1342 all_model_checkpoint_paths=[s1],
1351 all_model_checkpoint_paths=[s1, s2],
[all …]
Dsession_manager.py226 saver.recover_last_checkpoints(ckpt.all_model_checkpoint_paths)
Dsaver.py1198 all_model_checkpoint_paths=self.last_checkpoints,
/external/tensorflow/tensorflow/python/compiler/tensorrt/test/testdata/mnist/
Dcheckpoint2 all_model_checkpoint_paths: "model.ckpt-0"
3 all_model_checkpoint_paths: "model.ckpt-46900"
/external/tensorflow/tensorflow/python/keras/mixed_precision/testdata/lso_ckpt_tf2.2/
Dcheckpoint2 all_model_checkpoint_paths: "ckpt"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.train.pbtxt317 …argspec: "args=[\'save_dir\', \'model_checkpoint_path\', \'all_model_checkpoint_paths\', \'all_mod…
469 …argspec: "args=[\'save_dir\', \'model_checkpoint_path\', \'all_model_checkpoint_paths\', \'latest_…
/external/tensorflow/tensorflow/python/training/tracking/
Dutil.py1668 all_model_checkpoint_paths=[file_path],
2105 all_model_checkpoint_paths=[file_path],
Dutil_test.py722 .all_model_checkpoint_paths))
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining.py2195 all_model_checkpoint_paths=[filepath])