Error:In PaddlePaddle 2.x

出现的错误:

AssertionError: In PaddlePaddle 2.x, we turn on dynamic graph mode by default, and ‘data()’ is only supported in static graph mode. So if you want to use this api, please call ‘paddle.enable_static()’ before this api to enter static graph mode.

出现错误的文件

解决办法:

找到相关报错文件,打开文件,添加如下两行:

import paddle
paddle.enable_static()

Error:In PaddlePaddle 2.x_第1张图片
再次运行,解决【官网解决方法】

你可能感兴趣的:(毕设中遇到的问题记录,paddlepaddle)