Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- gradient descent
- attention
- 파이썬
- BFS
- 코테
- machinelearning
- 기계학습
- 코딩테스트
- 머신러닝
- NLP
- 일기
- Linear Model
- deque
- 부스트캠프
- Programmers
- Linear Regression
- transformer
- Django
- Python
- LLM
- 프롬프트
- GPT
- 프로그래머스
- dl
- Deeplearning
- 알고리즘
- rnn
- ChatGPT
- LeetCode
- prompt engineering
Archives
- Today
- Total
크크루쿠쿠
RuntimeError: Output 0 of UnbindBackward is a view and is being modified inplace. 본문
StackOverflow
RuntimeError: Output 0 of UnbindBackward is a view and is being modified inplace.
JH_KIM 2022. 2. 24. 10:23RuntimeError: Output 0 of UnbindBackward is a view and is being modified inplace. This view is the output of a function that returns multiple views. Such functions do not allow the output views to be modified inplace. You should replace the inplace operation by an out-of-place one.
torch version 1.7 버전부터 발생하는 문제이다.
아마 backward 과정에 bind 되어있어 문제가 되어서 수정된것으로 보인다.
>>> x = torch.randn(5, 10, requires_grad=True)
>>> for i, v in enumerate(x):
>>> v.fill_(i)
이러한 코드를
>>> x = torch.randn(5, 10, requires_grad=True)
>>> for i, v in enumerate([x[j] for j in range(x.size(0))]):
>>> v.fill_(i)
이렇게 unbind 해주면 오류가 해결된다.
'StackOverflow' 카테고리의 다른 글
[RTX 3090] RuntimeError: CUDA error: no kernel image is available for execution on the device (0) | 2022.02.24 |
---|---|
Vscode 에서 파일 삭제,입력 최대한 지양하자 (0) | 2022.01.12 |
pytorch Dataset 에서 AttributeError: (0) | 2022.01.11 |
Pytorch: IndexError: index out of range in self (0) | 2021.12.22 |
ImportError: IProgress not found. (0) | 2021.11.21 |
Comments