부스트캠프 AI Tech 2기/Precourse
Softmax Classification
Softmax Classification Discrete Probability Distribution: 이산적인 확률분포 주사위 이산확률분포의 PMF는 아래와 같음 (이미지출처: Boostcourse ai tech pre course) Softmax 내가 가위를 냈을 때 상대방이 무언가를 낼 확률 P(주먹|가위) = ? P(가위|가위) = ? P(보|가위) = ? 합쳐서 1이되는 값으로 변환하여 줌 z = torch.FloatTensor([1,2,3]) hypothesis = F.softmax(z,dim=0) hypothesis -> tensor([0.0900, 0.2447, 0.6652]) hypothesis.sum() -> tensor(1.) Cross Entropy Loss z = torch.ran..