当前位置: 代码迷 >> 综合 >> NotFoundError: Key biases_1 not found in checkpoint [[node save_2/RestoreV2 (defined at \AppData\L
  详细解决方案

NotFoundError: Key biases_1 not found in checkpoint [[node save_2/RestoreV2 (defined at \AppData\L

热度:37   发布时间:2023-12-26 20:26:35.0

当找不到检查点时,NotFoundError: Key biases_1 not found in checkpoint[[node save_2/RestoreV2 (defined at \AppData\Local\Temp/ipykernel_48952/3519746809.py:26) ]]

Saver保存读取
由于在Tensorflow 2.0 中,eager execution 是默认开启的。所以,需要先关闭eager execution使用tf.compat.v1.disable_eager_execution()
在程序最前边加一行代码
tf.compat.v1.disable_eager_execution()
然后重启内核,继续运行即可
在这里插入图片描述

  相关解决方案