Packages

o

scalation.analytics

ActivationFunc

object ActivationFunc

The ActivationFunc object contains common Activation functions.

See also

en.wikipedia.org/wiki/Activation_function

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActivationFunc
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def gaussian(t: Double): Double

    Compute the value of the 'gaussian' function at 't'.

    Compute the value of the 'gaussian' function at 't'.

    t

    the gaussian function argument

  10. def gaussianV(t: VectoD): VectoD

    Return the vector of values of the 'gaussian' function applied to vector 't.' The values are computed in-place.

    Return the vector of values of the 'gaussian' function applied to vector 't.' The values are computed in-place.

    t

    the gaussian function vector argument

  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def logistic(t: Double, a: Double, b: Double): Double

    Compute the value of the 'logistic' function at 't'.

    Compute the value of the 'logistic' function at 't'.

    t

    the logistic function argument

    a

    the shift parameter

    b

    the spread parameter

  15. def logisticV(t: VectoD, a: Double, b: Double): VectoD

    Compute the vector of values of the 'logistic' function applied to vector 't'.

    Compute the vector of values of the 'logistic' function applied to vector 't'. The values are computed in-place.

    t

    the logistic function argument

    a

    the shift parameter

    b

    the spread parameter

  16. def logit(p: Double): Double

    Compute the log of the odds of an event occurring (e.g., success, 1).

    Compute the log of the odds of an event occurring (e.g., success, 1). The inverse of the 'logit' function is the standard logistic function (sigmoid function).

    p

    the probability, a number between 0 and 1.

  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  20. def sigmoid(t: Double): Double

    Compute the value of the 'sigmoid' function at 't'.

    Compute the value of the 'sigmoid' function at 't'. This is a special case of the logistic function, where 'a = 0' and 'b = 1'. It is also referred to as the standard logistic function. It is also the inverse of the logit function.

    t

    the sigmoid function argument

  21. def sigmoidV(t: VectoD): VectoD

    Return the vector of values of the 'sigmoid' function applied to vector 't.' The values are computed in-place.

    Return the vector of values of the 'sigmoid' function applied to vector 't.' The values are computed in-place.

    t

    the sigmoid function vector argument

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped