摘要: 网络定义 import torch as torch import torch.nn as nn class LeNet(nn.Module): def __init__(self): super(LeNet,self).__init__() layer1 = nn.Sequential() lay 阅读全文
posted @ 2020-08-20 15:29 无左无右 阅读(1116) 评论(0) 推荐(0) 编辑