1 Star 0 Fork 0

蛋蛋编程 / SMU激活函数-Pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
SMU.py 2.37 KB
一键复制 编辑 原始数据 按行查看 历史
# coding=utf-8
import torch
from torch import nn
from matplotlib import pyplot as plt
# alpha控制x<0的开合角度,alpha=0时,在x<0,y的斜率越小
# mu控制x<0的小范围内的圆滑度
# 当alpha=0时,mu->∞,图像越趋向于ReLU
class SMU(nn.Module):
'''
Implementation of SMU activation.
Shape:
- Input: (N, *) where * means, any number of additional
dimensions
- Output: (N, *), same shape as the input
Parameters:
- alpha: hyper parameter
References:
- See related paper:
https://arxiv.org/abs/2111.04682
Examples:
smu = SMU()
x = torch.Tensor([0.6,-0.3])
x = smu(x)
'''
def __init__(self, alpha = 0.25, mu=100000):
'''
Initialization.
INPUT:
- alpha: hyper parameter
aplha is initialized with zero value by default
'''
super(SMU,self).__init__()
self.alpha = alpha
# initialize mu
self.mu = torch.nn.Parameter(torch.tensor(float(mu)))
def forward(self, x):
return ((1+self.alpha)*x + (1-self.alpha)*x*torch.erf(self.mu*(1-self.alpha)*x))/2
class SMU1(nn.Module):
'''
Implementation of SMU-1 activation.
Shape:
- Input: (N, *) where * means, any number of additional
dimensions
- Output: (N, *), same shape as the input
Parameters:
- alpha: hyper parameter
References:
- See related paper:
https://arxiv.org/abs/2111.04682
Examples:
smu1 = SMU1()
x = torch.Tensor([0.6,-0.3])
x = smu1(x)
'''
def __init__(self, alpha = 0.25):
'''
Initialization.
INPUT:
- alpha: hyper parameter
aplha is initialized with zero value by default
'''
super(SMU1,self).__init__()
self.alpha = alpha
# initialize mu
self.mu = torch.nn.Parameter(torch.tensor(4.352665993287951e-9))
def forward(self, x):
return ((1+self.alpha)*x+torch.sqrt(torch.square(x-self.alpha*x)+torch.square(self.mu)))/2
def test_SMU(x):
smu_activation = SMU()
print(f'SMU = {smu_activation(x)}')
def test_SMU1(x):
smu1_activation=SMU1()
print(f'SMU1 = {smu1_activation(x)}')
def test():
x = torch.Tensor([0.6,-0.3])
test_SMU(x)
test_SMU1(x)
if __name__ == '__main__':
test()
Python
1
https://gitee.com/luokai-dandan/smu-activation-function.git
git@gitee.com:luokai-dandan/smu-activation-function.git
luokai-dandan
smu-activation-function
SMU激活函数-Pytorch
master

搜索帮助