NAM icon indicating copy to clipboard operation
NAM copied to clipboard

NAM

Open Ronky123 opened this issue 3 years ago • 21 comments

Dear Author: Could you send the complete NAM code to me?Thanks a lot!

Ronky123 avatar Dec 07 '21 04:12 Ronky123

Dear Authors:: I also need your code to compare the experimental results. My email address is [email protected] .Thank you!

qq274983722 avatar Dec 13 '21 00:12 qq274983722

Dear Authors: Could you give me your complete NAM module. My email [email protected] Thanks!

fengzhenfeng avatar Dec 15 '21 08:12 fengzhenfeng

Dear Authors: Could you give me your complete NAM module. My email [email protected] Thanks!

huahuabai avatar Dec 31 '21 13:12 huahuabai

Dear Authors: Could you give me your complete NAM module? My email [[email protected]]Thanks!

beam-fly avatar Mar 09 '22 05:03 beam-fly

Dear Authors: Could you give me your complete NAM module? My email [[[email protected]]Thanks!

xxxjjjx avatar Mar 11 '22 04:03 xxxjjjx

Could you send me your complete NAM code. My email [[email protected]] Thanks a lot!

Azhihong avatar Mar 17 '22 01:03 Azhihong

Could you send me your complete NAM code. My email [[[email protected]]] Thank you!

xiaobaitubaibaibai avatar Mar 22 '22 11:03 xiaobaitubaibaibai

Dear Authors: Your work has inspired me a lot! Could you give me your complete NAM module. My email [[email protected]] Thanks a lot!

QandB79 avatar Mar 25 '22 11:03 QandB79

您好 ,可以把MobileNetV2这块代码给我一份吗?我想做对比试验 我的邮箱 [email protected] 谢谢

kk130629 avatar Mar 27 '22 03:03 kk130629

Dear Authors: Could you give me your complete NAM code. Thanks you very much! My email [[email protected]]

shell-filter avatar Apr 14 '22 11:04 shell-filter

Dear Authors: Could you give me your complete NAM code. Thanks you very much! My email [[email protected]]

yangyahu-1994 avatar May 06 '22 11:05 yangyahu-1994

Dear Authors: Could you give me the part of MobilenetV2 combined with attention? Thank you very much! My email [[email protected]]

zhouwy-lv avatar May 25 '22 08:05 zhouwy-lv

Dear Authors: Could you give me your complete NAM code. Thanks you very much! My email [[[email protected]]

tuziqq avatar Jun 15 '22 00:06 tuziqq

Dear Authors: Could you give me your complete NAM code. Thanks you very much! My email [[email protected]]

xiaobai111111223 avatar Jun 23 '22 01:06 xiaobai111111223

Dear Authors: Could you give me your complete NAM code. Thank you very much! My email [[email protected]]

Nisawan avatar Jul 12 '22 03:07 Nisawan

Dear Authors:: I also need your code to compare the experimental results. Thank you very much!My email address is [[email protected]]

Gchang9 avatar Sep 14 '22 12:09 Gchang9

不好意思,并没有代码

------------------ 原始邮件 ------------------ 发件人: @.>; 发送时间: 2022年9月14日(星期三) 晚上8:18 收件人: @.>; 抄送: @.>; @.>; 主题: Re: [Christian-lyc/NAM] NAM (Issue #3)

Dear Authors:: I also need your code to compare the experimental results. Thank you very much!My email address is @.***

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

xiaobaitubaibaibai avatar Oct 24 '22 04:10 xiaobaitubaibaibai

Dear Authors: Could you give me your complete NAM code. Thank you very much! My email [email protected]

CesareDavidePace avatar Nov 27 '22 20:11 CesareDavidePace

Dear Authors: Could you give me your complete NAM module. My email [[email protected]] Thanks!

lucky-asia avatar Apr 05 '23 00:04 lucky-asia

作者 您好!关于空间注意力模块能够提供一下源代码吗 ? 非常感谢,[email protected]

23jisuper avatar Dec 04 '23 10:12 23jisuper

import torch from torch import nn

class wca(nn.Module):

def __init__(self, channel, k_size=3):
    super(wca, self).__init__()
    self.avg_pool = nn.AdaptiveAvgPool2d(1)
    self.conv = nn.Conv1d(1, 1, kernel_size=k_size, padding=(k_size - 1) // 2, bias=False)
    self.bn2 = nn.BatchNorm2d(channel)
    self.sigmoid = nn.Sigmoid()

def forward(self, x):

    y = self.avg_pool(x)
    y = self.bn2(y)
    weight = self.bn2.weight.data.abs()
    weights = 0.01 * weight
    y = torch.mul(weights, x)
    y = self.sigmoid(y)

    return x * y.expand_as(x)

------------------ 原始邮件 ------------------ 发件人: "Christian-lyc/NAM" @.>; 发送时间: 2023年12月4日(星期一) 晚上6:53 @.>; @.@.>; 主题: Re: [Christian-lyc/NAM] NAM (Issue #3)

作者 您好!关于通道注意力模块能够提供一下源代码吗 ? @.***

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

lucky-asia avatar Dec 04 '23 11:12 lucky-asia