Свойство | Тип | Описание | |
---|---|---|---|
__DefaultInstance | IActivationFunction |
Метод | Описание | |
---|---|---|
Calculate ( double x, double auxArgs ) : double |
Calculates the output value for the specified input value and optional activation function auxiliary arguments.
|
|
Calculate ( float x, float auxArgs ) : float |
Calculates the output value for the specified input value and optional activation function auxiliary arguments. This single precision overload of Calculate() will be used in neural network code that has been specifically written to use floats instead of doubles.
|
|
GetRandomAuxArgs ( |
For activation functions that accept auxiliary arguments; generates random initial values for aux arguments for newly added nodes (from an 'add neuron' mutation).
|
|
MutateAuxArgs ( double auxArgs, |
Genetic mutation for auxiliary argument data.
|
public Calculate ( double x, double auxArgs ) : double | ||
x | double | |
auxArgs | double | |
Результат | double |
public Calculate ( float x, float auxArgs ) : float | ||
x | float | |
auxArgs | float | |
Результат | float |
public GetRandomAuxArgs ( |
||
rng | ||
connectionWeightRange | double | |
Результат | double[] |
public MutateAuxArgs ( double auxArgs, |
||
auxArgs | double | |
rng | ||
gaussianSampler | ZigguratGaussianSampler | |
connectionWeightRange | double | |
Результат | void |