- Today
- Total
목록전체 글 (384)
작심삼일
에러 AttributeError: module 'numpy' has no attribute 'object'. 해결 방법 numpy 1.24.*버전에서 문제가 나는 것으로 짐작하고 있다. 다운그레이드 해주면 해결된다. pip install numpy==1.23.4
에러 ImportError: numpy.core.multiarray failed to import 해결 방법 numpy 버전을 업그레이드 한다. pip install -U numpy 그러면 이렇게 성공적으로 업그레이드 된다. Successfully installed numpy-1.24.2 하지만 난 그랬더니 이런 에러를 또 만났다. AttributeError: module 'numpy' has no attribute 'object'. 그래서 numpy 버전을 다운그레이드 해줬더니 최종적으로 해결됐다. pip install numpy==1.23.4
에러 ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 88 from C header, got 80 from PyObject 해결 방법 numpy 라이브러리를 업데이트하면 된다. pip install --upgrade numpy 또는 pip uninstall numpy pip install numpy
에러 RuntimeError: CUDA error: device-side assert triggered CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. For debugging consider passing CUDA_LAUNCH_BLOCKING=1. 학습 시키던 중 두번째 epoch에서 저 오류를 만났다. (생고생 ㅜㅜ) 해결 방법 1. 보통은 classification 진행 중 class 수가 맞지 않을 때 발생하는 오류다. 예를 들면 label이 7개일 때 label을 0 ~ 6으로 설정해야하는데 1 ~ 7로 설정이 되어있다거나, labe..
에러 RuntimeError: one_hot is only applicable to index tensor. F.one_hot 함수를 사용하다 에러가 났다. 해결 방법 one_hot = F.one_hot(vector.to(torch.int64)) dtype을 int로 바꿔주면 된다.
에러 AttributeError: cannot assign module before Module.__init__() call 나는 network를 만들다가 저런 에러를 만났다. 해결 방법 super().__init__() 위 코드를 넣어준다.
에러 IndentationError: unindent does not match any outer indentation level 해결 들여쓰기 오류다. 들여쓰기 시 tab과 space가 섞여있을 때도 발생한다.
에러 cv2.error: OpenCV(4.5.5) /io/opencv/modules/imgproc/src/color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cvtColor' 해결 방법 cv2.imread에서 이미지를 잘못 불러온 것이다. 이미지 경로를 잘 썼는지 확인해보길 바란다.