当找不到检查点时,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()
然后重启内核,继续运行即可