ml.combust.mleap.core.ann

FunctionalLayer

class FunctionalLayer extends Layer

Functional layer properties, y = f(x)

Linear Supertypes
Layer, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FunctionalLayer
  2. Layer
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FunctionalLayer(activationFunction: ActivationFunction)

    activationFunction

    activation function

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val activationFunction: ActivationFunction

    activation function

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def createModel(weights: DenseVector[Double]): LayerModel

    Returns the instance of the layer based on weights provided.

    Returns the instance of the layer based on weights provided. Size of weights must be equal to weightSize

    returns

    the layer model

    Definition Classes
    FunctionalLayerLayer
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def getOutputSize(inputSize: Int): Int

    Returns the output size given the input size (not counting the stack size).

    Returns the output size given the input size (not counting the stack size). Output size is used to allocate memory for the output.

    inputSize

    input size

    returns

    output size

    Definition Classes
    FunctionalLayerLayer
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. val inPlace: Boolean

    If true, the memory is not allocated for the output of this layer.

    If true, the memory is not allocated for the output of this layer. The memory allocated to the previous layer is used to write the output of this layer. Developer can set this to true if computing delta of a previous layer does not involve its output, so the current layer can write there. This also mean that both layers have the same number of outputs.

    Definition Classes
    FunctionalLayerLayer
  17. def initModel(weights: DenseVector[Double], random: Random): LayerModel

    Returns the instance of the layer with random generated weights.

    Returns the instance of the layer with random generated weights.

    weights

    vector for weights initialization, must be equal to weightSize

    random

    random number generator

    returns

    the layer model

    Definition Classes
    FunctionalLayerLayer
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  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( ... )
  27. val weightSize: Int

    Number of weights that is used to allocate memory for the weights vector

    Number of weights that is used to allocate memory for the weights vector

    Definition Classes
    FunctionalLayerLayer

Inherited from Layer

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped