Trait

ml.combust.mleap.core.ann

Layer

Related Doc: package ann

Permalink

trait Layer extends Serializable

Trait that holds Layer properties, that are needed to instantiate it. Implements Layer instantiation.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Layer
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def createModel(initialWeights: 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

    initialWeights

    vector with layer weights

    returns

    the layer model

  2. abstract 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

  3. abstract 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.

  4. abstract 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

  5. abstract val weightSize: Int

    Permalink

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

Concrete 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. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped