티스토리 뷰
nn.Linear은 행렬과 같다.
nn.Linear을 통해서 행렬을 곱해서 tensor의 size()를 바꿀 수 있다.
import torch
from torch import nn
X = torch.Tensor([[1, 2],
[3, 4]])
# TODO : tensor X의 크기는 (2, 2)입니다
# nn.Linear를 사용하여서 (2, 5)로 크기를 바꾸고 이 크기를 출력하세요!
m = torch.nn.Linear(2, 5)
output = m(X)
print(output.size())
'MachineLearning' 카테고리의 다른 글
[ML] import cv2 cannot open shared object file no such file or directory (0) | 2022.02.23 |
---|---|
ILSVRC (0) | 2022.02.08 |
[Matplotlib] Bar, Line, Scatter Plot 그리기 (0) | 2022.02.03 |
[ML] numpy 함수들 (0) | 2022.01.27 |
[MachineLearning] 몬테카를로 샘플링이란?(Monte-Carlo Sampling) (0) | 2022.01.19 |