Pytorch搭建全连接网络,CNN(MNIST),LeNet-5(CIFAR10),ResNet(CIFAR10), RNN,自编码器
一、一个简单的全连接网络,只用到了Tensor的数据类型,没有用torch搭建模型和touch.optim的优化方法:#coding:utf-8importtorchbatch_n=100hidden_layer=100input_data=1000output_data=10x=torch.randn(batch_n,input_data)y=torch.randn(batch_n,output