공부한 것 정리/개발환경설정(12)
-
[Error] cv2.error: OpenCV(4.5.3) C:\Users\runneradmin\AppData\Local\Temp\pip-req-build-z4706ql7\opencv\modules\highgui\src\window.cpp:1274: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Coco..
블로그 이전했어요 https://cccaaa.tistory.com/10 opencv-python / opencv-python-contrip 둘 다 uninstall 후 다시 pip install 그래도 안되면 pip uninstall opencv-python-headless -y ref : https://www.google.com/search?q=cv2.error%3A+OpenCV(4.5.3)+C%3A%5CUsers%5Crunneradmin%5CAppData%5CLocal%5CTemp%5Cpip-req-build-z4706ql7%5Copencv%5Cmodules%5Chighgui%5Csrc%5Cwindow.cpp%3A1274%3A+error%3A+(-2%3AUnspecified+error)+The+fun..
2021.11.24 -
[Error] RuntimeError: CUDA error: no kernel image is available for execution on the deviceCUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect.
내 디바이스와 맞지 않는 torch라는 뜻, 무지성으로 pip install requirements.txt하지말고 아래 링크에서 원래 사용하던 torch 버전으로 설치해주자 https://pytorch.org/get-started/previous-versions/ PyTorch An open source machine learning framework that accelerates the path from research prototyping to production deployment. pytorch.org 내가 원래 뭘써야하는지 모르겠다 하면 아래 따라하면 됨 1. 내 디바이스의 스펙 알아보고 해당하는 compatibility 확인 (nvidia gpu) https://en.wikipedia.org/..
2021.10.18 -
우분투 듀얼부팅과 기본환경설정 / / dev/nvme0n1p3 : clean, xxx/xxx files, xxx/xxx blocks 오류 // 설치 후 검은 화면 오류
오류 해결은 맨 아래에 블로그 이전했어요 https://cccaaa.tistory.com/11 우분투 듀얼부팅과 기본환경설정 / / dev/nvme0n1p3 : clean, xxx/xxx files, xxx/xxx blocks 오류 // 설치 후 검 오류 해결은 맨 아래에 최근에 개발환경 설정할 일이 많아졌는데, 매번 하나하나 찾아보기 귀찮아서 정리해둠 하고자 하는 일은 C드라이브에 윈도우 깔린 컴(또는 노트북)에 우분투 20.04 LTS(21.08 cccaaa.tistory.com 최근에 개발환경 설정할 일이 많아졌는데, 매번 하나하나 찾아보기 귀찮아서 정리해둠 하고자 하는 일은 C드라이브에 윈도우 깔린 컴(또는 노트북)에 우분투 20.04 LTS(21.08기준 최신) D드라이브에 듀얼부팅하기 우분투 ..
2021.09.03 -
Error handling
RuntimeError: CUDA error: device-side assert triggered 1. /pytorch/aten/src/THCUNN/ClassNLLCriterion.cu:108: cunn_ClassNLLCriterion_updateOutput_kernel: block: [0,0,0], thread: [0,0,0] Assertion `t >= 0 && t 데이터셋 정의에서 -1값이 들어가면 오류 발생 => t >= 0 && t 혹은 CE 사용할 때 pred 인풋값이 (batch_size , num_classes) 인지 확인 // index_ignore = 해당인덱스 추가하기
2021.05.31 -
[error] TypeError: 'Tensor' object is not callable in custom loss
ref : https://discuss.pytorch.org/t/typeerror-tensor-object-is-not-callable/102931 TypeError: ‘Tensor’ object is not callable Hello,everyone. Newbie here, trying to learn pytorch. Recently, I’m using lstm or gru to do failure prediction. This is a binary classification problem ,so I use BCEWithLogitsLoss as the loss function, but finally, it is wrong. %matplotlib notebook impor discuss.pytorch.o..
2021.05.24 -
FLOPS란
블로그 이전했어요 https://cccaaa.tistory.com/17 FLOPS란 한국어 설명 ref : https://hongl.tistory.com/31r FLOPS (FLoating point OPerationS) - 플롭스 개발한 딥러닝 모델은 얼마나 빠를까요? 특히, 모바일 같은 저사양 디바이스에서의 딥 뉴럴 네트워크에서는 성능보다 cccaaa.tistory.com 한국어 설명 ref : https://hongl.tistory.com/31r FLOPS (FLoating point OPerationS) - 플롭스 개발한 딥러닝 모델은 얼마나 빠를까요? 특히, 모바일 같은 저사양 디바이스에서의 딥 뉴럴 네트워크에서는 성능보다는 해당 사양에서 원활히 돌아가는지가 서비스 측면에서 매우 중요합니다. h..
2021.05.23