🕹️SCConv: Spatial and Channel Reconstruction Convolution for Feature Redundancy - ScConv/ScConv.py at main · cheng-haha/ScConv
遗憾的是,作者时至今日居然还没开源代码,呃,不过有 github 上有同学稍微复现了下,下面贴两段代码[2]有需要可以自取。 SRU class GroupBatchnorm2d(nn.Module): def __init__(self, c_num:int, group_num:int = 16, eps:float = 1e-10 ): super(GroupBatchnorm2d,self).__init__() assert c_...
16 changes: 8 additions & 8 deletions 16 ScConv.py Original file line numberDiff line numberDiff line change @@ -35,7 +35,7 @@ def __init__(self, oup_channels:int, group_num:int = 16, gate_treshold:float = 0.5, torch_gn:bool = False...
代码链接:https://github.com/cheng-haha/ScConv论文链接:https://openaccess.thecvf.com/content/CVPR2023/papers/Li_SCConv_Spatial_and_Channel_Reconstruction_Convolution_for_Feature_Redundancy_CVPR_2023_paper.pdf 卷积神经网络(CNN)在各种计算机视觉任务中取得了显著的性能,但这是以巨大的计算资源为代价的,部...
🕹️SCConv: Spatial and Channel Reconstruction Convolution for Feature Redundancy - GitHub - cheng-haha/ScConv: 🕹️SCConv: Spatial and Channel Reconstruction Convolution for Feature Redundancy
2 changes: 1 addition & 1 deletion 2 ScConv.py Original file line numberDiff line numberDiff line change @@ -103,7 +103,7 @@ def __init__(self, op_channel:int, group_num:int = 16, gate_treshold:float = 0.5, alpha:float = 3/4, alpha:float = 1/2, squeeze_radio:int = ...
Reproduction of ScConv(CVPR 2023). Contribute to XxxxYi/Reproduction_of_ScConv_CVPR2023 development by creating an account on GitHub.
Module): """AGLU激活函数模块,来源于https://github.com/kostas1515/AGLU。""" def __init__(self, device=None, dtype=None) -> None: """初始化AGLU激活函数模块。""" super().__init__() # 使用Softplus作为基础激活函数,beta设置为-1.0 self.act = nn.Softplus(beta=-1.0) # 初始化lambda...
x = self.SRU(x) x = self.GRU(x) x = self.CRU(x) return x 0 comments on commit 24d8f7b Please sign in to comment. Footer © 2024 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact Manage cookies Do not share my personal information ...
README.md Update README.md Aug 14, 2024 ScConv.py Update ScConv.py Oct 19, 2023 View all files ScConv This is the unofficial implementation ofSCConv: Spatial and Channel Reconstruction Convolution for Feature Redundancy. Update: Solved some bugs in SRU, thanks to @huihui43,zhangzh16. ...