当前位置:网站首页>AlexNet网络详解及复现
AlexNet网络详解及复现
2022-08-03 05:29:00 【WGS.】
详细请看:
''' 这里将卷积核个数设为原文的一半 '''
class AlexNet(nn.Module):
def __init__(self, num_classes=1000, init_weights=False):
super(AlexNet, self).__init__()
self.features = nn.Sequential(
# pytorch tensor通道顺序:[batch_size, channel, height, width],通道数、高、宽,以下注释忽略batch_size
# 这里为了方便padding直接为2了,结果为小数的话会舍弃掉小数点后面的
nn.Conv2d(3, 48, kernel_size=11, stride=4, padding=2), # input[3, 224, 224] output[48, 55, 55]
nn.ReLU(inplace=True),
nn.MaxPool2d(kernel_size=3, stride=2), # output[48, 27, 27]
nn.Conv2d(48, 128, kernel_size=5, padding=2), # output[128, 27, 27]
nn.ReLU(inplace=True),
nn.MaxPool2d(kernel_size=3, stride=2), # output[128, 13, 13]
nn.Conv2d(128, 192, kernel_size=3, padding=1), # output[192, 13, 13]
nn.ReLU(inplace=True),
nn.Conv2d(192, 192, kernel_size=3, padding=1), # output[192, 13, 13]
nn.ReLU(inplace=True),
nn.Conv2d(192, 128, kernel_size=3, padding=1), # output[128, 13, 13]
nn.ReLU(inplace=True),
nn.MaxPool2d(kernel_size=3, stride=2), # output[128, 6, 6]
)
self.classifier = nn.Sequential(
nn.Dropout(p=0.5),
nn.Linear(128 * 6 * 6, 2048),
nn.ReLU(inplace=True),
nn.Dropout(p=0.5),
nn.Linear(2048, 2048),
nn.ReLU(inplace=True),
nn.Linear(2048, num_classes),
)
# 初始化权重
if init_weights:
self._initialize_weights()
def forward(self, x):
x = self.features(x)
x = torch.flatten(x, start_dim=1) # dim=1是channel的维度
x = self.classifier(x)
return x
def _initialize_weights(self):
for m in self.modules():
if isinstance(m, nn.Conv2d):
nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu')
if m.bias is not None:
nn.init.constant_(m.bias, 0)
elif isinstance(m, nn.Linear):
nn.init.normal_(m.weight, 0, 0.01)
nn.init.constant_(m.bias, 0)
边栏推荐
猜你喜欢
随机推荐
SVN账号配置权限
Scala 基础 (三):运算符和流程控制
零代码工具拖拽流程图
Scala 高阶(八):集合内容汇总(下篇)
contos install php-ffmpeg and tp5.1 using plugin
IPV4地址详解
MySQL 日期时间类型精确到毫秒
Oracle 11g silent install
xshell报错-要继续使用此程序,您必须应用最新的更新或使用新版本
PHP二维数组保留键值去重
一根网线完美解决IPTV+千兆网复用,还不来试试
在Zabbix5.4上使用ODBC监控Oracle数据库
sql中 exists的用法
Redis的应用详解
MySQL的触发器
【经验分享】配置用户通过Console口登录设备示例
Oracle常用命令-基本命令
BOA服务器的移植
【Markdown 数学公式】markdown常用公式写法
Prometheus monitors container, pod, email alerts









