Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pytorch
- paramiko
- C++
- OpenCV
- SSH
- 기타 연주
- 채보
- Python
- pip
- C
- 프로그래머스
- C#
- Selenium
- Linux
- ubuntu
- 명령어
- mysql
- windows forms
- LIST
- 핑거스타일
- pandas
- VS Code
- label
- 오류
- error
- YOLO
- Docker
- Visual Studio
- JSON
- Numpy
Archives
- Today
- Total
기계는 거짓말하지 않는다
Pytorch 경고 Creating a tensor from a list of numpy.ndarrays is extremely slow 본문
AI
Pytorch 경고 Creating a tensor from a list of numpy.ndarrays is extremely slow
KillinTime 2024. 7. 18. 19:18Creating a tensor from a list of numpy.ndarrays is extremely slow.
Please consider converting the list to a single numpy.ndarray with numpy.array()
before converting to a tensor.
Pytorch에서 List에 다수의 numpy.ndarray가 있을 경우 torch.tensor로 변환하는 경우 발생한다.
이렇게 하면 성능이 저하될 수 있고, List를 단일 numpy.ndarray로 변환 후 tensor로 다시 변환하여야 한다.
import numpy as np
import torch
def convert_to_tensor(list_of_arrays):
# 리스트를 numpy.ndarray로 변환
combined_array = np.array(list_of_arrays)
# numpy.ndarray를 torch.Tensor로 변환
tensor = torch.tensor(combined_array)
return tensor
# numpy.ndarray 리스트
list_of_arrays = [np.random.rand(3, 3) for _ in range(10)]
# 변환
tensor = convert_to_tensor(list_of_arrays)
print(tensor)
'AI' 카테고리의 다른 글
torchvision transforms Resize의 size 매개변수 (0) | 2024.09.26 |
---|---|
torch Could not load library libcudnn_cnn_train.so.8. Error 오류 (0) | 2024.07.03 |
YOLO 텍스트 라벨을 이용하여 Object Crop 이미지 저장 (0) | 2024.06.12 |
YOLO 텍스트 라벨을 이미지에 bbox 표시, 시각화 (0) | 2023.12.25 |
Pytorch RuntimeError: Input type (~) and weight type (~) should be the same (0) | 2023.05.13 |
Comments