AttributeError: module 'numpy' has no attribute 'max'
时间: 2023-10-29 14:58:29 浏览: 155
AttributeError: module 'tensorflow.compat.v1' has no attribute '
AttributeError: module 'numpy' has no attribute 'max'错误是因为在使用numpy模块的max函数时出错。根据引用的问题分析,可能是由于文件名与numpy库名冲突导致的。解决方法是更改文件名,避免与库名冲突。具体解决步骤如下:
1. 检查当前文件所在的目录,确保没有其他与numpy同名的文件。
2. 右击文件,选择"重命名",将文件名更改为与numpy无关的名称。
3. 运行代码,确保不再报AttributeError: module 'numpy' has no attribute 'max'错误。
这样应该能解决AttributeError: module 'numpy' has no attribute 'max'的问题。
阅读全文