반응형
파이토치(torch) 어레이를 텐서 타입으로 array to tensor pytorch¶
In [1]:
import torch
In [2]:
# 어레이 생성
import numpy as np
x = np.array([[1, 2],
[3, 4]])
print(x, type(x))
[[1 2] [3 4]] <class 'numpy.ndarray'>
In [3]:
# 어레이를 텐서로 변환 : from_numpy 사용
x = torch.from_numpy(x)
print(x, type(x))
tensor([[1, 2], [3, 4]]) <class 'torch.Tensor'>
In [4]:
# 텐서를 넘파이로 변환 : numpy() 사용
x = x.numpy()
print(x, type(x))
[[1 2] [3 4]] <class 'numpy.ndarray'>
반응형
'python' 카테고리의 다른 글
파이썬 랜덤 정수 생성 random.randint (0) | 2023.03.26 |
---|---|
파이썬 랜덤 소수 생성 random.uniform random float (0) | 2023.03.25 |
cv2 RGB 색상 각각 추출 (0) | 2023.03.22 |
파이썬(python) 올리베티 얼굴 데이터셋 불러오기 sklearn fetch_olivetti_faces (0) | 2023.03.21 |
파이썬 절대값 계산 sqrt abs (0) | 2023.03.20 |
댓글