函数功能:找出训练时保存的模型
ckpt.model_checkpoint_path可以找出所有模型中最新的模型
ckpt = tf.train.get_checkpoint_state('/mnist/summary/train')
if ckpt and ckpt.model_checkpoint_path:print(ckpt.model_checkpoint_path)
输出:
/mnist/summary/train/model.ckpt-1000(1000是训练步数)
ckpt.all_model_checkpoint_paths可以找出所有模型
ckpt = tf.train.get_checkpoint_state('mnist/summary/train')
if ckpt and ckpt.model_checkpoint_path:print(ckpt.all_model_checkpoint_paths)
输出:
['mnist/summary/train/model.ckpt-500', 'mnist/summary/train/model.ckpt-1000']