# pix2pixHD debugging
에러로그: UserWarning: volatile was removed and now has no effect. Use `with torch.no_grad():` instead.
pyTorch에서 volatile을 더이상 지원하지 않으므로, with torch.no_grad()를 대신 이용하라는 Warning이 떴다.
pytorch discuss에서 검색해 본 결과, before의 코드를 now의 코드로 고치면 된다고 한다.
# before
...
x = Variable(torch.randn(1), volatile=True)
return x
# now
with torch.no_grad():
...
x = torch.randn(1)
return x
출처: https://discuss.pytorch.org/t/volatile-now-has-no-effect-use-with-torch-no-grad-instead/26656/16
'딥러닝 프레임워크 > PyTorch' 카테고리의 다른 글
PyTorch 설치 이후 Jupyter Notebook에서 import torch 안될때 (0) | 2020.03.11 |
---|---|
PyTorch 기초 배워보기 (0) | 2020.03.03 |
pytorch - torchvision 설치 (0) | 2020.03.03 |
PyTorch 설치하기 (0) | 2020.03.03 |