[Python] list()와 []의 차이점 numpy.array 타입을 가진 변수 a가 있다고 가정하겠습니다. type(a) = np.array list(a)는 np.array type을 지닌 a를 list type으로 변경합니다 [a]는 list[np.array] 처럼 np.array를 list로 감쌉니다. Python/기타 코딩 2022.06.16
[Pytorch] List를 Tensor로 변경하기. torch.stack list에 tensor가 담겨져 있는 경우, list를 없애고 torch.tensor로 바꾸는 방법은 아래와 같다. # segm_result = list[tensor] segm_result = torch.stack(segm_result, dim=0) Python/PyTorch 공부 2022.05.22