module ‘numpy‘ has no attribute ‘int‘

问题:

Traceback (most recent call last):
  File ".\get_miou.py", line 61, in 
    hist, IoUs, PA_Recall, Precision = compute_mIoU(gt_dir, pred_dir, image_ids, num_classes, name_classes)  # 执行计算mIoU的函数
  File "C:\Users\cnu\unet-pytorch\utils\utils_metrics.py", line 124, in compute_mIoU
    return np.array(hist, np.int), IoUs, PA_Recall, Precision
  File "D:\Program Files\Anaconda\envs\unet_pytorch\lib\site-packages\numpy\__init__.py", line 305, in __getattr__
    raise AttributeError(__former_attrs__[attr])
AttributeError: module 'numpy' has no attribute 'int'.
`np.int` was a deprecated alias for the builtin `int`. To avoid this error in existing code, 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.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
    https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations

解决:

将 np.int 改为 np.int_ 或者 np.int32 或者 np.int64 。

你可能感兴趣的:(numpy)