Tag: 激活函数

C#中的激活函数列表

我可以在数学中找到激活函数的列表,但不能在代码中找到。 所以我想这应该是代码中这样一个列表的正确位置,如果有的话。 从这两个链接中的算法翻译开始: https : //en.wikipedia.org/wiki/Activation_function https://stats.stackexchange.com/questions/115258/comprehensive-list-of-activation-functions-in -neural的网络与-利弊,利弊 目标是通过UI轻松访问Activation类(包含函数及其派生类)。 编辑:我的尝试 using UnityEngine; using System.Collections; using System; /// ///Activation Functions from: ///https://en.wikipedia.org/wiki/Activation_function ///https://stats.stackexchange.com/questions/115258/comprehensive-list-of-activation-functions-in-neural-networks-with-pros-cons ///D infront means the Deravitive of the function ///x is the input of one perceptron. a is the alpha value sometimes needed. /// [System.Serializable] public class Activation { public ActivationType activationType; public Activation(ActivationType […]