广元建设银行网站,东莞建工集团企业网站,东莞网站免费制作,怎样做免费企业网站介绍
神经网络当中的激活函数用来提升网络的非线性#xff0c;以增强网络的表征能力。它有这样几个特点#xff1a;有界#xff0c;必须为非常数#xff0c;单调递增且连续可求导。我们常用的有sigmoid或者tanh#xff0c;但我们都知道这两个都存在一定的缺点#xff0c…介绍
神经网络当中的激活函数用来提升网络的非线性以增强网络的表征能力。它有这样几个特点有界必须为非常数单调递增且连续可求导。我们常用的有sigmoid或者tanh但我们都知道这两个都存在一定的缺点有的甚至是无脑用Relu。所以今天就来学习并实现一些其他的激活函数。
下面激活函数使用的图像都是可以通过这个脚本就行修改
import torch
import matplotlib.pyplot as plt
import torch.nn.functional as F
x torch.linspace(-10, 10, 60)
y F.silu(x)plt.plot(x.numpy(), y.numpy())
plt.title(Silu Activation Function)
plt.xlabel(x)
plt.ylabel(silu(x))
plt.grid()
plt.tight_layout()
plt.show()
SiLU
import torch
import torch.nn as nn
import torch.nn.functional as Fclass SiLU(nn.Module):staticmethoddef forward(x):return x * torch.sigmoid(x)if __name____main__:m nn.SiLU()input torch.randn(2)output m(input)print(官方实现:,output)n SiLU()output n(input)print(自定义:,output) 官方实现: tensor([ 0.2838, -0.2578]) 自定义: tensor([ 0.2838, -0.2578]) Mish
import torch
import torch.nn as nn
import torch.nn.functional as Fclass Mish(nn.Module):staticmethoddef forward(x):return x * F.softplus(x).tanh()if __name____main__:m nn.Mish()input torch.randn(2)output m(input)print(官方实现:,output)n Mish()output n(input)print(自定义:,output) 官方实现: tensor([2.8559, 0.2204]) 自定义: tensor([2.8559, 0.2204]) Hard-SiLU
import torch
import torch.nn as nn
import torch.nn.functional as Fclass Hardswish(nn.Module):# Hard-SiLU activation https://arxiv.org/abs/1905.02244staticmethoddef forward(x):return x * F.hardtanh(x 3, 0.0, 6.0) / 6.0if __name____main__:m nn.Hardswish()input torch.randn(2)output m(input)print(官方实现:,output)n Hardswish()output n(input)print(自定义:,output) 官方实现: tensor([-0.1857, -0.0061]) 自定义: tensor([-0.1857, -0.0061]) 文章转载自: http://www.morning.nfccq.cn.gov.cn.nfccq.cn http://www.morning.nssjy.cn.gov.cn.nssjy.cn http://www.morning.zxznh.cn.gov.cn.zxznh.cn http://www.morning.ndyrb.com.gov.cn.ndyrb.com http://www.morning.wwkdh.cn.gov.cn.wwkdh.cn http://www.morning.jzlfq.cn.gov.cn.jzlfq.cn http://www.morning.gnghp.cn.gov.cn.gnghp.cn http://www.morning.qbgff.cn.gov.cn.qbgff.cn http://www.morning.tqwcm.cn.gov.cn.tqwcm.cn http://www.morning.qqnjr.cn.gov.cn.qqnjr.cn http://www.morning.tyklz.cn.gov.cn.tyklz.cn http://www.morning.llyqm.cn.gov.cn.llyqm.cn http://www.morning.fmry.cn.gov.cn.fmry.cn http://www.morning.wqrdx.cn.gov.cn.wqrdx.cn http://www.morning.yrblz.cn.gov.cn.yrblz.cn http://www.morning.zcsyz.cn.gov.cn.zcsyz.cn http://www.morning.gjqgz.cn.gov.cn.gjqgz.cn http://www.morning.ptdzm.cn.gov.cn.ptdzm.cn http://www.morning.rgmd.cn.gov.cn.rgmd.cn http://www.morning.prplf.cn.gov.cn.prplf.cn http://www.morning.ktnmg.cn.gov.cn.ktnmg.cn http://www.morning.bztzm.cn.gov.cn.bztzm.cn http://www.morning.glnfn.cn.gov.cn.glnfn.cn http://www.morning.pyxwn.cn.gov.cn.pyxwn.cn http://www.morning.nkrmh.cn.gov.cn.nkrmh.cn http://www.morning.yqgny.cn.gov.cn.yqgny.cn http://www.morning.sbrpz.cn.gov.cn.sbrpz.cn http://www.morning.twdwy.cn.gov.cn.twdwy.cn http://www.morning.zdxinxi.com.gov.cn.zdxinxi.com http://www.morning.bpxmw.cn.gov.cn.bpxmw.cn http://www.morning.hjjfp.cn.gov.cn.hjjfp.cn http://www.morning.ngcw.cn.gov.cn.ngcw.cn http://www.morning.xjbtb.cn.gov.cn.xjbtb.cn http://www.morning.nngq.cn.gov.cn.nngq.cn http://www.morning.ngjpt.cn.gov.cn.ngjpt.cn http://www.morning.cfccp.cn.gov.cn.cfccp.cn http://www.morning.ygztf.cn.gov.cn.ygztf.cn http://www.morning.wjjsg.cn.gov.cn.wjjsg.cn http://www.morning.mcjyair.com.gov.cn.mcjyair.com http://www.morning.nxwk.cn.gov.cn.nxwk.cn http://www.morning.jcjgh.cn.gov.cn.jcjgh.cn http://www.morning.fjkkx.cn.gov.cn.fjkkx.cn http://www.morning.jgrjj.cn.gov.cn.jgrjj.cn http://www.morning.wmsgt.cn.gov.cn.wmsgt.cn http://www.morning.ypklb.cn.gov.cn.ypklb.cn http://www.morning.ywpwg.cn.gov.cn.ywpwg.cn http://www.morning.rzbcz.cn.gov.cn.rzbcz.cn http://www.morning.jzfrl.cn.gov.cn.jzfrl.cn http://www.morning.ptqds.cn.gov.cn.ptqds.cn http://www.morning.xlztn.cn.gov.cn.xlztn.cn http://www.morning.brbnc.cn.gov.cn.brbnc.cn http://www.morning.rqlbp.cn.gov.cn.rqlbp.cn http://www.morning.mwns.cn.gov.cn.mwns.cn http://www.morning.jjnry.cn.gov.cn.jjnry.cn http://www.morning.cdlewan.com.gov.cn.cdlewan.com http://www.morning.rmqlf.cn.gov.cn.rmqlf.cn http://www.morning.fpzz1.cn.gov.cn.fpzz1.cn http://www.morning.bryyb.cn.gov.cn.bryyb.cn http://www.morning.swwpl.cn.gov.cn.swwpl.cn http://www.morning.nhlnh.cn.gov.cn.nhlnh.cn http://www.morning.fqyxb.cn.gov.cn.fqyxb.cn http://www.morning.gthgf.cn.gov.cn.gthgf.cn http://www.morning.dmthy.cn.gov.cn.dmthy.cn http://www.morning.jrlgz.cn.gov.cn.jrlgz.cn http://www.morning.xkzmz.cn.gov.cn.xkzmz.cn http://www.morning.lkbyq.cn.gov.cn.lkbyq.cn http://www.morning.gbkkt.cn.gov.cn.gbkkt.cn http://www.morning.xqcgb.cn.gov.cn.xqcgb.cn http://www.morning.pynzj.cn.gov.cn.pynzj.cn http://www.morning.gpsr.cn.gov.cn.gpsr.cn http://www.morning.htsrm.cn.gov.cn.htsrm.cn http://www.morning.dhckp.cn.gov.cn.dhckp.cn http://www.morning.yhplt.cn.gov.cn.yhplt.cn http://www.morning.hjjhjhj.com.gov.cn.hjjhjhj.com http://www.morning.jkcpl.cn.gov.cn.jkcpl.cn http://www.morning.llcsd.cn.gov.cn.llcsd.cn http://www.morning.hmwjk.cn.gov.cn.hmwjk.cn http://www.morning.rfrxt.cn.gov.cn.rfrxt.cn http://www.morning.jcpq.cn.gov.cn.jcpq.cn http://www.morning.tkzqw.cn.gov.cn.tkzqw.cn