ActivationFunctionType enum

Inheritance

Constructors

ActivationFunctionType()
const

Values

logistic → const ActivationFunctionType

the logistic sigmoid. (0,1 bounds)

tanh → const ActivationFunctionType

tanh. (-1,1 bounds)

It is sort of scaled version of the logistic sigmoid

abs → const ActivationFunctionType

abs sigmoid defined as x/(1+abs(x)). (-1,1 bounds)

bell → const ActivationFunctionType

bell curve defined as e^(-0.5xx). (0,1 bounds)

uscls → const ActivationFunctionType

unbounded S shaped curve made from three line segments.

uscsls → const ActivationFunctionType

unbounded S shaped curve made from two line segments connected by cubic curve.

uacsls → const ActivationFunctionType

unbounded ascending curve made from two lines connected by quadric curve.

fastBell → const ActivationFunctionType

fast bell shaped function.

divlineSigmoid → const ActivationFunctionType

divline sigmoid (-1,1 bounds)

line → const ActivationFunctionType

the identity line -> f(x)=x

funnyHat → const ActivationFunctionType
cubicSigmoid → const ActivationFunctionType
squartered → const ActivationFunctionType

f(x) = x*x/4

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<ActivationFunctionType>
A constant List of the values in this enum, in order of their declaration.