D:\anaaconda\lib\site-packages\sklearn\feature_extraction\image.py:167: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations dtype=np.int):怎么解决
时间: 2023-06-18 15:03:52 浏览: 192
python 3.74 运行import numpy as np 报错lib\site-packages\numpy\__init__.py
这是一个 DeprecationWarning(弃用警告),提示使用 `int` 代替 `np.int`,因为在 NumPy 1.20 中,`np.int` 已被弃用。如果你不想看到这个警告,可以按照警告中提供的链接,了解更多信息并采取相应的措施。如果你不想修改任何行为并且安全,可以简单地使用 `int` 来代替 `np.int`,例如 `dtype=int`。如果你需要指定精度,可以使用 `np.int64` 或 `np.int32`。
阅读全文