AttributeError: module 'numpy' has no attribute 'int'

这个错误消息表明,你试图访问 numpy 模块的 int 属性,但是 numpy 模块中没有这个属性。

这通常是因为你的代码中有一个语法错误,导致 Python 解释器识别错误。

具体来说,可能是你在代码中写成了 numpy.int,但是应该写成 numpy.int64 或 numpy.int32,这两个类型分别表示 64 位整数和 32 位整数。

确保你在代码中使用了正确的类型,并且检查你的代码是否有其他语法错误,这样就可以解决这个问题了。

你可能感兴趣的:(AttributeError: module 'numpy' has no attribute 'int')