Documentation of 'org.encog.engine.network.activation.ActivationSoftMax' Java class
ActivationSoftMax
org.encog.engine.network.activation

Class ActivationSoftMax

    • Constructor Detail

      • ActivationSoftMax

        public ActivationSoftMax()
        Construct the soft-max activation function.
    • Method Detail

      • activationFunction

        public final void activationFunction(double[] x,
                                             int start,
                                             int size)
        Implements the activation function. The array is modified according to the activation function being used. See the class description for more specific information on this type of activation function.
        Specified by:
        activationFunction in interface ActivationFunction
        Parameters:
        x - The input array to the activation function.
        start - The starting index.
        size - The number of values to calculate.
      • derivativeFunction

        public final double derivativeFunction(double b,
                                               double a)
        Calculate the derivative. For performance reasons two numbers are provided. First, the value "b" is simply the number that we would like to calculate the derivative of. Second, the value "a", which is the value returned by the activation function, when presented with "b". We use two values because some of the most common activation functions make use of the result of the activation function. It is bad for performance to calculate this value twice. Yet, not all derivatives are calculated this way. By providing both the value before the activation function is applied ("b"), and after the activation function is applied("a"), the class can be constructed to use whichever value will be the most efficient.
        Specified by:
        derivativeFunction in interface ActivationFunction
        Parameters:
        b - The number to calculate the derivative of, the number "before" the activation function was applied.
        a - The number "after" an activation function has been applied.
        Returns:
        The derivative.
      • getParamNames

        public final java.lang.String[] getParamNames()
        Specified by:
        getParamNames in interface ActivationFunction
        Returns:
        The names of the parameters.
      • getParams

        public final double[] getParams()
        Specified by:
        getParams in interface ActivationFunction
        Returns:
        The params for this activation function.
      • hasDerivative

        public final boolean hasDerivative()
        Specified by:
        hasDerivative in interface ActivationFunction
        Returns:
        Return false, softmax has no derivative.
      • setParam

        public final void setParam(int index,
                                   double value)
        Set one of the params for this activation function.
        Specified by:
        setParam in interface ActivationFunction
        Parameters:
        index - The index of the param to set.
        value - The value to set.
      • getFactoryCode

        public java.lang.String getFactoryCode()
        Specified by:
        getFactoryCode in interface ActivationFunction
        Returns:
        The string for the Encog factory code. Return null if you do not care to be support for creating of your activation through factory.
      • getLabel

        public java.lang.String getLabel()
        Specified by:
        getLabel in interface ActivationFunction
        Returns:
        The human-friendly name for this activation

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.