250x250
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 |
Tags
- 데이터베이스
- Python
- Tkinter
- OpenCV
- Web Programming
- 컴퓨터 비전
- MariaDB
- tensorflow
- 논문 리뷰
- Deep Learning
- kubernetes
- 파이토치
- Docker
- Django
- 파이썬
- yaml
- FLASK
- numpy
- 장고
- vue.js
- k8s
- pytorch
- 웹 프로그래밍
- 딥러닝
- GUI
- 그래픽 유저 인터페이스
- POD
- Computer Vision
- 텐서플로우
- paper review
Archives
- Today
- Total
목록TensorDataset (1)
Maxima's Lab
[Python, Pytorch] TensorDataset & DataLoader
안녕하세요, 오늘은 Pytorch 내 TensorDataset과 DataLoader에 대해 알아보도록 하겠습니다. 코드를 구현하기 위한 과정은 다음과 같습니다. 임의의 numpy.narray 타입의 데이터 셋 생성(train_x, train_y) numpy.narray 타입의 데이터 셋을 torch.Tensor 타입으로 변환 TensorDataset을 이용하여 데이터 셋 구성 DataLoader를 이용하여 Batch로 구성 위의 과정에 대해 전체 코드는 다음과 같습니다. import torch from torch.utils.data import TensorDataset, DataLoader import numpy as np train_x = np.random.randint(0, 256, (64, 3, 2..
Python/Pytorch
2022. 8. 31. 23:07