1. 首页
  2. 数据库
  3. 其它
  4. Pytorch 实现 LeNet

Pytorch 实现 LeNet

上传者: 2021-01-16 11:54:17上传 PDF文件 35KB 热度 27次
#import import sys import d2lzh_pytorch as d2l import torch import torch.nn as nn import torch.optim as optim import time #net class Flatten(torch.nn.Module): #展平操作 def forward(self, x): return x.view(x.shape[0], -1) class Reshape(torch.nn.Module): #将图像大小重定型 def forward(self, x):
下载地址
用户评论