Packages

case class AFF(f: FunctionS2S, fV: FunctionV_2V, fM: FunctionM_2M, dV: FunctionV_2V, dM: FunctionM_2M, bounds: PairD = null) extends Product with Serializable

The AFF class holds an Activation Function Family (AFF).

f

the activation function itself

fV

the vector version of the activation function

fM

the matrix version of the activation function

dV

the vector version of the activation function derivative

dM

the matrix version of the activation function derivative

bounds

the (lower, upper) bounds on the range of the activation function

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AFF
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AFF(f: FunctionS2S, fV: FunctionV_2V, fM: FunctionM_2M, dV: FunctionV_2V, dM: FunctionM_2M, bounds: PairD = null)

    f

    the activation function itself

    fV

    the vector version of the activation function

    fM

    the matrix version of the activation function

    dV

    the vector version of the activation function derivative

    dM

    the matrix version of the activation function derivative

    bounds

    the (lower, upper) bounds on the range of the activation function

Value Members

  1. val bounds: PairD
  2. val dM: FunctionM_2M
  3. val dV: FunctionV_2V
  4. val f: FunctionS2S
  5. val fM: FunctionM_2M
  6. val fV: FunctionV_2V
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product