본문 바로가기
DeepLearning Framework & Coding/De-bugging

[python] AttributeError: 'numpy.ndarray' object has no attribute 'numpy'

by 노마드공학자 2021. 12. 25.

AttributeError: 'numpy.ndarray' object has no attribute 'numpy'

 

Numpy에 왜 numpy array 관련 함수가 없지? 라고 생각하실 수 있습니다.

하지만, 자세히 코드를 뜯어보면 이미 numpy array인 함수를 to_numpy로 다시 또 변경하고자 할때 해당 에러가 발생합니다.

to_numpy()를 하는 변수가 이미 어떤 data type인지 확인해보시면 좋습니다.

 

https://discuss.pytorch.org/t/attributeerror-numpy-ndarray-object-has-no-attribute-numpy/42062

 

AttributeError: 'numpy.ndarray' object has no attribute 'numpy'

@ptrblck, Hi! I’m trying to visualize the adversarial images generated by this script: https://pytorch.org/tutorials/beginner/fgsm_tutorial.html This tutorial is used for the mnist data. Now I want to use for other data which is trained using the incepti

discuss.pytorch.org

 

댓글