美文网首页Tensorflow语法
关于checkpoint和重载模型restore

关于checkpoint和重载模型restore

作者: Dorrrris | 来源:发表于2019-12-18 14:34 被阅读0次

    论文的代码是

    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

        本文链接:https://www.haomeiwen.com/subject/eyhunctx.html