Package activationFunction

Interface Summary
ActivationFunctionModel Interface representing Neruon activation function model.
 

Class Summary
HardLimitActivationFunction Hard Limit Activation Funciton return 1 if input value is greater then threshold and 0 otherwise.
LinearActivationFunction Linear Activation Function return value calculated by function describe as y = a * x + b. where:
a, b - parameters of linear function x - input value
SymetricHardLimitActivationFunction Symetric Hard Limit function return 1 if input value is greater then threshold and -1 otherwise.
TransparentActivationFunction Transparent activation function return input value without any changes.