关于checkpoint和重载模型restore

论文的代码是

saver.restore(sess, '{}/model'.format(chkpt_dir))

会报错。说checkpoint_exists is deprecated and will be removed in a future version,也没给解决方法。
搜了一下,可以改成:

new_saver=tf.train.import_meta_graph(chkpt_dir+'/model.meta')
new_saver.restore(sess,chkpt_dir+'/model')

之前生成模型,保存模型这两步是成功的,因为文件夹里确实有四个文件:checkpoint, model.meta, model.index, model.data-00000-of-00001.
这样改之后成功。

你可能感兴趣的:(关于checkpoint和重载模型restore)