Class MPSCNNNeuronType


  • public final class MPSCNNNeuronType
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int Absolute
      < f(x) = fabs(x)
      static int Count
      < holds the number of MPSCNNNeuronTypes
      static int ELU
      < f(x) = x >= 0 ?
      static int Exponential
      < f(x) = c ^ (a * x + b)
      static int GeLU
      < f(x) = (1.0 + erf(x * sqrt(0.5))) * 0.5 * x
      static int HardSigmoid
      < f(x) = clamp((x * a) + b, 0, 1)
      static int Linear
      < f(x) = a * x + b
      static int Logarithm
      < f(x) = log_c(a * x + b)
      static int None
      < f(x) = x
      static int Power
      < f(x) = (a * x + b) ^ c
      static int PReLU
      < Same as ReLU except parameter a is per channel; parameterized rectified linear unit
      static int ReLU
      < f(x) = x >= 0 ?
      static int ReLUN
      < f(x) = min((x >= 0 ?
      static int Sigmoid
      < f(x) = 1 / (1 + e^-x)
      static int SoftPlus
      < f(x) = a * log(1 + e^(b * x))
      static int SoftSign
      < f(x) = x / (1 + abs(x))
      static int TanH
      < f(x) = a * tanh(b * x)
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait