当前位置:网站首页>matlab神经网络所有传递函数(激活函数)公式详解
matlab神经网络所有传递函数(激活函数)公式详解
2022-07-03 08:15:00 【老饼讲解-BP神经网络】
原创文章,转载请说明来自《老饼讲解神经网络》:bp.bbbdata.com
关于《老饼讲解神经网络》:
本网结构化讲解神经网络的知识,原理和代码。
重现matlab神经网络工具箱的算法,是学习神经网络的好助手。
目录
本文介绍matlab神经网络工具箱中的传递函数公式和图象详解。
一、传递函数名称
matlab神经网络工具箱的传递函数有如下:
| 函数 | 函数名称 | 英语解释 |
| tansig | 对称S形函数 | Symmetric sigmoid transfer function. |
| logsig | 对数S形函数 | Logarithmic sigmoid transfer function. |
| elliotsig | Elliot S形函数 | Elliot sigmoid transfer function. |
| hardlim | 正硬限制函数 | Positive hard limit transfer function. |
| hardlims | 对称硬限制函数 | Symmetric hard limit transfer function. |
| poslin | 正线性函数 | Positive linear transfer function. |
| purelin | 线性函数 | Linear transfer function. |
| satlin | 正线性饱和函数 | Positive saturating linear transfer function. |
| satlins | 对称线性饱和函数 | Symmetric saturating linear transfer function. |
| netinv | 反比函数 | Inverse transfer function. |
| tribas | 三角基函数 | Triangular basis transfer function. |
| radbas | 径向基函数 | Radial basis transfer function. |
| radbasn | 标准化径向基函数 | Radial basis normalized transfer function. |
| compet | 竞争函数 | Competitive transfer function. |
| softmax | 软最大化函数 | Soft max transfer function. |
二、传递函数图象
它们的图象画出如下:
(不包含radbasn,softmax,compet)
三、传递函数表达式为
它们的表达式为:
(1) tansig 对称S形函数
(2)elliotsig (Elliot S形函数)
(3) logsig 对数S形函数
(4)compet 竞争函数
将向量中最大者置1,其余置0.
例子,compet([0.2 0.5 0.8 ]) = [0 0 1]
(5) hardlim 正硬限制函数
(6) hardlims 对称硬限制函数
(7) poslin 正线性函数
(8) purelin 线性函数
(9) satlin 正线性饱和函数
(10) satlins 对称线性饱和函数
(11) netinv 反比函数
(12) tribas 三角基函数
(13) radbas 径向基函数
(14) radbasn 标准化径向基函数
为了减少exp计算产生数值问题,可对xi作如下处理:
(15) softmax 软最大化函数
相关文章
边栏推荐
- P2704 [noi2001] artillery position (shape pressure DP)
- P2622 关灯问题II(状态压缩 搜索)
- JS common basic case sorting (continuous update)
- Compilation error: "not in executable format: file format not recognized"“
- Unity2019_ Lighting system
- STM32F103 SPI (pit Diary)
- C#课程设计之员工信息管理系统
- Golang string segmentation, substitution and interception
- Haproxy+kept build 01
- 【音视频】ijkplayer错误码
猜你喜欢

【云原生】微服务之Feign的介绍与使用

Oracle insert single quotation mark

C语言-入门-精华版-带你走进编程(一)
![[cocos creator] Click the button to switch the interface](/img/b8/f0fd54a2a197cbfd788990e2806b52.png)
[cocos creator] Click the button to switch the interface

Get to know unity2 for the first time

My touch screen production "brief history" 2
![[set theory] order relation (hastu example | divisive relation hastu | inclusive relation hastu | refinement relation hastu)](/img/de/1c75b5e7ed79aca47462de365428a7.jpg)
[set theory] order relation (hastu example | divisive relation hastu | inclusive relation hastu | refinement relation hastu)

Viz artist advanced script video tutorial -- stringmap use and vertex operation

the installer has encountered an unexpected error installing this package

Unity2019_ Natural ambient light_ Sky box
随机推荐
Uniapp learning records
Unity2019_ Lighting system
RM delete file
Golang 中string和int类型相互转换
Easy touch plug-in
Initial unity
Wpf: solve the problem that materialdesign:dialoghost cannot be closed
Transplantation of tslib Library
Use filechannel to copy files
Three characteristics
idea取消引用顯示效果
Docker installs MySQL and successfully uses Navicat connection
Lua framwrok framework starts
Youyou1 of xlua knapsack system
Transplantation of freetype Library
多旅行商问题——公式和求解过程概述
Usage of (case, when) in PostgreSQL
Golang的range
jupyter远程服务器配置以及服务器开机自启
Ilruntime learning - start from scratch












