赞
踩
如图:
NotFoundError: Key weights not found in checkpoint
[[{{node save/RestoreV2}}]]
分析:Tensorflow 保存时需要注意以下几点,
解决方式:以上报错为 weights 参数未找到,可查看得知,保存时用的参数名于打开时的参数名不一致,设为一致即可。
保存时:
W = tf.Variable([[1,2,3],[3,4,5]], dtype=tf.float32, name='weight')
打开时:将 name=‘weights’ 更改为 name=‘weight’,与保存时命名一致
W = tf.Variable(np.arange(6).reshape((2, 3)), dtype=tf.float32, name='weight')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。