CS231n课程笔记:Leture8 Deep Learning Software

目录

 Define your own nn modules

 Dataloader

 Pretrained MODELS

Visdom

 

 

 

I love pytorch .no session run! 

 

 

 higher level wrappers for working

 

 Define your own nn modules

 Dataloader

 Pretrained MODELS

import torch
import torchvision

alexnet = torchvision.models.alexnet(pretrained=True)
vgg16 = torchvision.models.vgg16(pretrained=True)
resnet101 = torchvision.models.resnet101(pretrained=True)

Visdom

 

猜你喜欢

转载自blog.csdn.net/m0_53292725/article/details/127041176
今日推荐