Searched refs:all_model_checkpoint_paths (Results 1 – 12 of 12) sorted by relevance
/aosp_15_r20/external/tensorflow/tensorflow/python/checkpoint/ |
H A D | checkpoint_management.py | 65 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 D | checkpoint_management_test.py | 161 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 D | checkpoint.py | 1571 all_model_checkpoint_paths=[file_path], 1889 all_model_checkpoint_paths=[file_path],
|
H A D | checkpoint_test.py | 739 .all_model_checkpoint_paths))
|
/aosp_15_r20/external/tensorflow/tensorflow/python/compiler/tensorrt/test/testdata/mnist/ |
H A D | checkpoint | 2 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 D | checkpoint_state.proto | 15 repeated string all_model_checkpoint_paths = 2; field 16 // Unix timestamps corresponding to all_model_checkpoint_paths, indicating
|
H A D | saver_test.py | 1315 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 D | session_manager.py | 247 saver.recover_last_checkpoints(ckpt.all_model_checkpoint_paths)
|
H A D | saver.py | 1294 all_model_checkpoint_paths=self.last_checkpoints,
|
/aosp_15_r20/external/tensorflow/tensorflow/tools/api/golden/v2/ |
H A D | tensorflow.__internal__.train.pbtxt | 17 …argspec: "args=[\'save_dir\', \'model_checkpoint_path\', \'all_model_checkpoint_paths\', \'latest_…
|
/aosp_15_r20/external/tensorflow/tensorflow/tools/api/golden/v1/ |
H A D | tensorflow.train.pbtxt | 317 …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 D | training.py | 2250 all_model_checkpoint_paths=[filepath])
|