컴퓨터공학/CNN & Mask RCNN

numpy 버전 문제 (in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.)

Upupa epops 2019. 8. 13. 03:59

최근 버전으로 numpy를 설치하는 경우 아래와 같은 오류를 볼 수 있다.

 

 FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'. np_resource = np.dtype([("resource", np.ubyte, 1)])

 

- numpy 1.17이 설치되는 경우 발생하는 문제로, 삭제 후 1.16.4 버전을 깔아주면 해결된다.

 

 

 

- 아래와 같이 numpy 버전 확인 후 삭제하고 1.16.4 버전을 설치한다.

pip show numpy 

pip uninstall numpy

pip install numpy==1.16.4

 

 

 

- 문제없이 동작한다.

 

 

SMALL