赞
踩
注意力机制就是在特征中添加权重,使得网络对重要特征特征进行关注,充分发挥重要特征的作用,从而提升网络模型的整体效果。
通道注意力机制SE就是在通道上添加权重,如果哪个通道更加重要,那么这个通道上的权重就会增加。
(b,c,h,w)
,经过最大池化变成(b,c,1,1)
,相当于把特征图变成了细长条。(b,c,1,1)
->(b,c/ratio,1,1)
(b,c/ratio,1,1)
->(b,c,1,1)
,这个就作为权重。import torch import torch.nn as nn class SE(nn.Module): def __init__(self, channel,ratio = 4): super(SE,self).__init__() # 第一步:全局平均池化,输入维度(1,1,channel) self.avg = nn.AdaptiveAvgPool2d(1) # 第二步:全连接,通道数量缩减 self.fc1 = nn.Linear(channel, channel//ratio,False) self.act = nn.ReLU() self.fc2 = nn.Linear(channel// ratio, channel,False) self.act2 = nn.Sigmoid() def forward(self,x): b, c, h, w = x.size() # b, c, 1, 1->b,c y = self.avg(x).view(b,c) y = self.fc1(y) y = self.act(y) y = self.fc2(y) y = self.act2(y).view(b,c,1,1) # print(y) return x * y model = SE(8) model = model.cuda() input = torch.randn(1, 8, 12, 12).cuda() output = model(input) print(output.shape) # (1, 8, 12, 12)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。