반응형
check pytorch tensor size
import torch
## allocate sample tensor to x
x = torch.FloatTensor([
[1, 2],
[3, 4],
[5, 6],
[7, 8]
])
## size with "size" method
x.size()
# out : torch.Size([4, 2])
## size with "shape" method
x.shape
# out : torch.Size([4, 2])
## dimension with "dim" method
x.dim()
# out : 2
## size on 0 dimension with "size(0)" method
x.size(0)
# out : 4
x.shape[0]
# out: 4
반응형
'python' 카테고리의 다른 글
파이썬에서 엘라스틱서치 인덱스 컬럼이름 확인하기 (0) | 2023.08.09 |
---|---|
load iris dataframe for sample data (0) | 2023.08.09 |
넘파이 어레이를 이용해서 데이터프레임 만들기 (0) | 2023.08.09 |
파이토치 어레이를 텐서 타입으로 array to tensor (0) | 2023.08.09 |
matplotlib 그래프 위에 화살표 그리기 (0) | 2023.08.08 |
댓글