Home
last modified time | relevance | path

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

/aosp_15_r20/external/tensorflow/tensorflow/python/checkpoint/
H A Dcheckpoint_management.py65 all_model_checkpoint_paths=None, argument
92 if all_model_checkpoint_paths is None:
93 all_model_checkpoint_paths = []
95 if (not all_model_checkpoint_paths or
96 all_model_checkpoint_paths[-1] != model_checkpoint_path):
99 all_model_checkpoint_paths.append(model_checkpoint_path)
103 != len(all_model_checkpoint_paths))):
107 % (all_model_checkpoint_paths, all_model_checkpoint_timestamps))
114 for i, p in enumerate(all_model_checkpoint_paths):
116 all_model_checkpoint_paths[i] = os.path.relpath(p, save_dir)
[all …]
H A Dcheckpoint_management_test.py161 self.assertEqual(len(ckpt.all_model_checkpoint_paths), 1)
162 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], abs_path)
172 self.assertEqual(len(ckpt.all_model_checkpoint_paths), 1)
173 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], new_rel_path)
180 save_dir, abs_path, all_model_checkpoint_paths=paths)
184 len(ckpt.all_model_checkpoint_paths), len(paths) if paths else 1)
185 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], abs_path)
196 train_dir, rel_path, all_model_checkpoint_paths=[abs_path, rel_path])
199 self.assertEqual(len(ckpt.all_model_checkpoint_paths), 2)
200 self.assertEqual(ckpt.all_model_checkpoint_paths[-1], rel_path)
[all …]
H A Dcheckpoint.py1571 all_model_checkpoint_paths=[file_path],
1889 all_model_checkpoint_paths=[file_path],
H A Dcheckpoint_test.py739 .all_model_checkpoint_paths))
/aosp_15_r20/external/tensorflow/tensorflow/python/compiler/tensorrt/test/testdata/mnist/
H A Dcheckpoint2 all_model_checkpoint_paths: "model.ckpt-0"
3 all_model_checkpoint_paths: "model.ckpt-46900"
/aosp_15_r20/external/tensorflow/tensorflow/python/training/
H A Dcheckpoint_state.proto15 repeated string all_model_checkpoint_paths = 2; field
16 // Unix timestamps corresponding to all_model_checkpoint_paths, indicating
H A Dsaver_test.py1315 all_model_checkpoint_paths, save_dir): argument
1319 self.assertEqual(checkpoint_state.all_model_checkpoint_paths,
1320 all_model_checkpoint_paths)
1337 all_model_checkpoint_paths=[s1],
1346 all_model_checkpoint_paths=[s1, s2],
1356 all_model_checkpoint_paths=[s2, s3],
1373 all_model_checkpoint_paths=[s3, s2],
1383 all_model_checkpoint_paths=[s2, s1],
1408 all_model_checkpoint_paths=[s1],
1417 all_model_checkpoint_paths=[s1, s2],
[all …]
H A Dsession_manager.py247 saver.recover_last_checkpoints(ckpt.all_model_checkpoint_paths)
H A Dsaver.py1294 all_model_checkpoint_paths=self.last_checkpoints,
/aosp_15_r20/external/tensorflow/tensorflow/tools/api/golden/v2/
H A Dtensorflow.__internal__.train.pbtxt17 …argspec: "args=[\'save_dir\', \'model_checkpoint_path\', \'all_model_checkpoint_paths\', \'latest_…
/aosp_15_r20/external/tensorflow/tensorflow/tools/api/golden/v1/
H A 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_…
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/engine/
H A Dtraining.py2250 all_model_checkpoint_paths=[filepath])