Multivairate Linear Regression
복수의 정보가 존재할때 하나의 추측값을 계산
1. torch.FloatTensor를 이용해 Data 선언.
2. torch.zeros를 이용해 W, b 선언.
3. optimizer(SGD) 선언.
4. 훈련
※ hypothesis = x_train.matmul(W) + b 여기서 matmul이란??
- 행렬 곱셈
ex) m1 = torch.FloatTensor([[1, 2], [3, 4]])
m2 = torch.FloatTensor([[1], [2]])
m1.matmul(m2) = m1(2 x 2) * m2(2 x 1)
'Deep Learning > Pytorch' 카테고리의 다른 글
07_Pytorch_Logistic_Regression (0) | 2021.08.18 |
---|---|
05_Pytorch_nn.Module (0) | 2021.08.13 |
03_Pytorch_Linear_Regression (0) | 2021.08.12 |
02_Pytorch Shape and Calculation (0) | 2021.08.10 |
01_Pytorch Shape and Calculation (0) | 2021.08.09 |