卷积神经网络代码torch
时间: 2023-11-11 15:05:22 浏览: 96
卷积神经网络代码
4星 · 用户满意度95%
好的,以下是一个简单的卷积神经网络的代码示例,使用PyTorch框架:
```python
import torch
import torch.nn as nn
class ConvNet(nn.Module):
def __init__(self):
super(ConvNet, self).__init__()
self.layer1 = nn.Sequential(
nn.Conv2d(1, 16, kernel_size=5, stride=1, padding=2),
nn.BatchNorm2d(16),
nn.ReLU(),
nn.MaxPool2d(kernel_size=2, stride=2))
self.layer2 = nn.Sequential(
nn.Conv2d(16, 32, kernel_size=5, stride=1, padding=2),
nn.BatchNorm2d(32),
nn.ReLU(),
nn.MaxPool2d(kernel_size=2, stride=2))
self.fc = nn.Linear(7*7*32, 10)
def forward(self, x):
out = self.layer1(x)
out = self.layer2(out)
out = out.reshape(out.size(0), -1)
out = self.fc(out)
return out
```
这个卷积神经网络包含两个卷积层和一个全连接层。第一个卷积层有16个输出通道,第二个卷积层有32个输出通道。在每个卷积层之后都有一个批量归一化层和ReLU激活函数。最后的全连接层将32个7x7的特征图展平为一个长度为10的向量,用于分类。
阅读全文