pytorch构建模型构建模型过程
设计自己的模型类class Net(nn.Module):
def __init__(self):
super(Net,self).__init__()
2018-07-27