반응형
custom loss 만들어서 쓰는데, TypeError: 'Tensor' object is not callable 발생함
원인 : loss function이름과 return하는 인자 값 이름이 같아서 발생
loss = loss(pred, ground_truth ) 하면 안됨 이름이 똑같으면 안되서
loss = custom_loss(pred, ground_truth ) 해야 됨~~
ref : https://discuss.pytorch.org/t/typeerror-tensor-object-is-not-callable/102931
반응형