반응형
Runtime Error : Legacy autograd function with non-static forward method is deprecated and will be removed in 1.3. Please use new-style autograd function with static forward method. (Example: https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function)
실행 도중 코드에서 쓰고 있는 autograd가 너무 오래된 버전이라
새 autograd와 forward 형식을 쓰라고 계속 에러가 떴다.
밑에 답변을 보고 해결할 수 있었음
https://github.com/amdegroot/ssd.pytorch/issues/444
output = self.detect ( ~~
또는 self.detect.apply(~~이렇게 되어 있는 함수를
with torch.no_grad() :
self.detect.forward(~~ 로 고치면 된다.
ssd & pytorch 관련 참고 :
https://github.com/miyamotok0105/pytorch_handbook/blob/master/chapter7/demo/section7_1.ipynb
https://github.com/amdegroot/ssd.pytorch/
https://github.com/pyaf/SSD-face-detector
반응형
'Boostcamp AI tech 3기' 카테고리의 다른 글
konlpy 관련 라이브러리 설치하기 (한국어 품사태깅, 전처리) (0) | 2022.10.27 |
---|---|
[부스트캠프 AI Tech 3기] 비전공자가 경험한 부캠 후기 (0) | 2022.06.20 |
Faceboxes errors : OSError: The nvcc binary could not be located in your $PATH. Either add it to your path, or set $CUDAHOME (0) | 2022.06.07 |
streamlit error : raise OSError(errno.ENOSPC, "inotify watch limit reached")OSError: [Errno 28] inotify watch limit reached 해결방법 (0) | 2022.05.30 |
cannot import name '_registerMatType' from 'cv2.cv2' (0) | 2022.05.27 |
paddlepaddle gpu 관련 cuda 버전에 맞게 설치하기 (0) | 2022.05.19 |
creating build/temp.linux-x86_64-3.7/lap error 에러 (0) | 2022.05.19 |
opencv video mp4로 저장하기 (0) | 2022.05.19 |