Class Softmax

java.lang.Object
com.jml.neural_network.activations.Softmax
All Implemented Interfaces:
ActivationFunction

public class Softmax extends Object implements ActivationFunction
The softmax activation function. f(x)i = exp(x_i) / sumj=1m( exp(xj) ) where x is a vector of length m and sumj=1m ( exp(xj) ) = exp(x1) + exp(x2) + ... + exp(xm).
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    linalg.Matrix
    back​(linalg.Matrix data)
    Applies the derivative of the activation function, element-wise, to a matrix.
    linalg.Matrix
    forward​(linalg.Matrix data)
    Applies the activation function, element-wise, to a matrix.
    Gets the name of the activation function.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • Softmax

      public Softmax()
  • Method Details

    • forward

      public linalg.Matrix forward(linalg.Matrix data)
      Applies the activation function, element-wise, to a matrix.
      Specified by:
      forward in interface ActivationFunction
      Parameters:
      data - The matrix to apply activation function to.
      Returns:
      The result of the element-wise activation function applied to the matrix.
    • back

      public linalg.Matrix back(linalg.Matrix data)
      Applies the derivative of the activation function, element-wise, to a matrix.
      Specified by:
      back in interface ActivationFunction
      Parameters:
      data - The matrix to apply the derivative of the activation function to.
      Returns:
      The slope of the activation function, evaluated element-wise, of the data matrix.
    • getName

      public String getName()
      Gets the name of the activation function.
      Specified by:
      getName in interface ActivationFunction
      Returns:
      The name of the activation function as a String.