de.htwdd.rosenkoenig.neuro.net
Interface ActivationFunction

All Known Implementing Classes:
Identity, Sigmoid, Tanh

public interface ActivationFunction

Interface for functions.


Method Summary
 double compute(double value)
           
 double computeDerivation(double value)
           
 

Method Detail

compute

double compute(double value)
Parameters:
value - value to compute something from.
Returns:
result computed from value. Takes value and computes something from it using a function.

computeDerivation

double computeDerivation(double value)
Parameters:
value - value to compute something from.
Returns:
result computed from value. Takes value and computes something from it using a derivation of a function.