728x90
반응형
- 에러 문구
AttributeError: cannot assign module before Module.__init__() call
신경망 모델 설계시 super().__init__()을 빼먹어 생기는 문제입니다.
아래 처럼 코드에 추가해주면 해결 가능합니다.
class Block(nn.Module):
def __init__(self, in_channel, hidden_channel, out_channel):
super(CBlock, self).__init__()
.
.
.
728x90
반응형
'Error Note' 카테고리의 다른 글
[dlib] dlib 설치시 에러 (1) | 2024.05.10 |
---|---|
TypeError: Unable to convert function return value to a Python type! The signature was () -> handle (1) | 2024.04.02 |
RuntimeError: Unable to find a valid cuDNN algorithm to run convolution (1) | 2023.11.19 |
TypeError: only integer scalar arrays can be converted to a scalar index (1) | 2023.11.07 |
runtimeerror: found dtype long but expected float (2) | 2023.09.26 |