AttributeError: module 'numpy' has no attribute '_int'. Did you mean: 'rint'?
时间: 2023-08-06 11:05:12 浏览: 208
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你在代码中使用了`numpy._int`,而实际上`numpy`模块没有`_int`属性。可能是你想使用`numpy.rint`函数,它用于四舍五入到最近的整数。你可以尝试将代码中的`numpy._int`替换为`numpy.rint`来解决这个问题。如果你有其他的问题,请随时提问。
阅读全文