博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
激活函数:Swish: a Self-Gated Activation Function
阅读量:5281 次
发布时间:2019-06-14

本文共 770 字,大约阅读时间需要 2 分钟。

今天看到google brain 关于激活函数在2017年提出了一个新的Swish 激活函数。

叫swish,地址:https://arxiv.org/abs/1710.05941v1 

pytorch里是这样的:

def relu_fn(x):    """ Swish activation function """    return x * torch.sigmoid(x)

 Swish, which is simply f(x) = x ·sigmoid(x). Our experiments show that Swish tends to work better than ReLU on deeper models across a number of challenging datasets.

For example, simply replacing ReLUs with Swish units improves top-1 classification accuracy on ImageNet by0.9% for MobileNASNetA and 0.6% for Inception-ResNet-v2.

The simplicity of Swish and its similarity to ReLU make it easy for practitioners to replace ReLUs with Swish units in any neural network.

他人的介绍:

https://blog.csdn.net/wydbyxr/article/details/84615522

 

转载于:https://www.cnblogs.com/yjphhw/p/11083877.html

你可能感兴趣的文章
微软最有价值专家大中华峰会开幕视频
查看>>
Python入门:装饰器
查看>>
MySQL索引类型总结和使用技巧以及注意事项
查看>>
几何球
查看>>
.md5mesh and .md5anim文件介绍
查看>>
文本分类资源和程序开源共享
查看>>
java进阶01 异常处理
查看>>
Django模板层学习笔记
查看>>
开源webos--云DWOS
查看>>
JAVA学习路线图(一文详解)
查看>>
.Net和C#的理解
查看>>
initramfs文件系统
查看>>
jffs2和yaffs2文件系统
查看>>
How to check Logstash's pulse
查看>>
python闭包
查看>>
Leetcode-Letter Combinations of a Phone Number
查看>>
IntelliJ Idea 2017 免费激活方法
查看>>
IOS8 App开发快速入门视频教程与案例分享 20课 附讲义
查看>>
40、mysql的历史简介
查看>>
【java】为什么阿里巴巴禁止在 foreach 循环里进行元素的 remove/add 操作
查看>>