Searched refs:all_model_checkpoint_paths (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/python/training/ |
D | checkpoint_management.py | 69 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 …]
|
D | checkpoint_management_test.py | 164 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 …]
|
D | checkpoint_state.proto | 15 repeated string all_model_checkpoint_paths = 2; field 16 // Unix timestamps corresponding to all_model_checkpoint_paths, indicating
|
D | saver_test.py | 1249 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 …]
|
D | session_manager.py | 226 saver.recover_last_checkpoints(ckpt.all_model_checkpoint_paths)
|
D | saver.py | 1198 all_model_checkpoint_paths=self.last_checkpoints,
|
/external/tensorflow/tensorflow/python/compiler/tensorrt/test/testdata/mnist/ |
D | checkpoint | 2 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/ |
D | checkpoint | 2 all_model_checkpoint_paths: "ckpt"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
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_…
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | util.py | 1668 all_model_checkpoint_paths=[file_path], 2105 all_model_checkpoint_paths=[file_path],
|
D | util_test.py | 722 .all_model_checkpoint_paths))
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | training.py | 2195 all_model_checkpoint_paths=[filepath])
|