execute模块中有predict函数但显示AttributeError: module 'execute' has no attribute 'predict'
时间: 2023-10-24 15:07:19 浏览: 75
解决运行出现dict object has no attribute has_key问题
5星 · 资源好评率100%
这个错误通常表示你的 `execute` 模块中确实没有名为 `predict` 的函数。请确保你的 `execute` 模块中存在 `predict` 函数,并且它被正确地导入到你的代码中。
如果你确定 `execute` 模块中存在 `predict` 函数,你可以检查一下你的代码是否正确引用了该函数。可能是你在代码中写错了函数名或者模块名,或者你没有正确地传递函数所需的参数。
阅读全文