activationFunction
Interface ActivationFunctionModel

All Known Implementing Classes:
HardLimitActivationFunction, LinearActivationFunction, SymetricHardLimitActivationFunction, TransparentActivationFunction

public interface ActivationFunctionModel

Interface representing Neruon activation function model.


Method Summary
 double[] getParamateres()
          Return array of the parameters
 double getValue(double inputValue)
          Return value of the activation function for specified input value.
 void setParameteres(double[] paramateresList)
          Set parameters of the activation function
 

Method Detail

setParameteres

void setParameteres(double[] paramateresList)
Set parameters of the activation function

Parameters:
paramateresList - array contains parameters

getParamateres

double[] getParamateres()
Return array of the parameters

Returns:
array of the parameteres

getValue

double getValue(double inputValue)
Return value of the activation function for specified input value.

Parameters:
inputValue - input value of the function
Returns:
value of the activation function