Class

ml.combust.mleap.core.ann

FunctionalLayer

Related Doc: package ann

Permalink

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
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FunctionalLayer(activationFunction: ActivationFunction)

    Permalink

    activationFunction

    activation function

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. val activationFunction: ActivationFunction

    Permalink

    activation function

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

    Permalink

    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
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink

    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
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. val inPlace: Boolean

    Permalink

    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
  15. def initModel(weights: DenseVector[Double], random: Random): LayerModel

    Permalink

    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
  16. final def isInstanceOf[T0]: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. val weightSize: Int

    Permalink

    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