AttributeError: module 'paddle' has no attribute 'enable_stastc'
时间: 2023-11-19 13:07:22 浏览: 220
问题解决:AttributeError: module ‘paddle.fluid’ has no attribute ‘EndStepEvent’
5星 · 资源好评率100%
这个错误提示表明在使用Paddle时,你尝试调用了一个名为'enable_static'的属性,但是该属性在当前的Paddle模块中不存在。这可能是因为你使用的是较旧版本的Paddle,而该属性只在Paddle 2.0及以上版本中可用。要解决这个问题,你可以尝试更新你的Paddle版本到2.0或更高版本。如果你已经使用的是2.0或更高版本的Paddle,则需要在你的代码中添加'paddle.enable_static()'语句来启用静态图模式。
阅读全文