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 | 31 |
Tags
- 웹 프로그래밍
- Docker
- FLASK
- 컴퓨터 비전
- k8s
- GUI
- numpy
- Tkinter
- 장고
- 파이썬
- paper review
- kubernetes
- Computer Vision
- 논문 리뷰
- 딥러닝
- 데이터베이스
- pytorch
- POD
- OpenCV
- MariaDB
- Web Programming
- Deep Learning
- 그래픽 유저 인터페이스
- yaml
- vue.js
- Python
- 텐서플로우
- tensorflow
- 파이토치
- Django
Archives
- Today
- Total
목록torchvision.datasets (1)
Maxima's Lab
[Python, Pytorch] DataLoader (데이터 불러오기)
안녕하세요, 오늘은 Pytorch 내 DataLoader (데이터 셋 불러오기)에 대해서 알아보겠습니다. torchvision.datasets 내 데이터 셋 예시들 중 CIFAR10를 활용해서 진행해보도록 하겠습니다. import torch import torchvision import torchvision.transforms as transforms import numpy as np transform = transforms.Compose( [transforms.ToTensor()]) train_dataset = torchvision.datasets.CIFAR10(root='./data', train=True, download=True, transform=transform) print(train_data..
Python/Pytorch
2022. 8. 7. 23:58