# Q3
"2번 #2(2번 주석, 23행)는 cost를 계산하는 과정으로, cost = F.mse_loss(hypothesis, y_train) 또는 cost = nn.MESLoss(hypothesis, y_train)으로 대체될 수 있다."
현재 torch module loss 에선 MESLoss 는 존재하지 않는 것으로 확인됩니다. MSELoss를 말하는 것 같습니다
# Q4
3번과 5번이 동일한 선지가 나옵니다.
(질문) 이진 분류 문제에서는 손실 함수의 경우 binary cross entropy 를 쓰는게 맞지않나요? MSE가 정답인 이유를 모르겠습니다
comment