728x90
- torchvision.models를 통해 model 불러오기
import torchvision.models as models
- model 설정 (image clf : resnet34, vgg, alexnet, squeezenet, densenet, googlenet etc)
model = models.resnet34(pretrained=False)
- model.cuda = model.to(DEVICE) 모델 입력
model = model.cuda # model.to(DEVICE)
반응형
'👾 Deep Learning' 카테고리의 다른 글
[Image Classification] Kaggle - Birds 400 Species (0) (0) | 2022.05.12 |
---|---|
데이터 아카데미 8일차 수업 정리 (0) | 2021.07.07 |
[Pytorch] CNN - Conv2D (0) | 2021.04.02 |
GTX 1660 super에 맞는 tensorflow, python, CUDA, Cudnn 버전 (4) | 2021.03.28 |
Optimizer ( Adam, SGD ) (0) | 2021.03.27 |