ml.combust.mleap.core.ann

SoftmaxLayerWithCrossEntropyLoss

class SoftmaxLayerWithCrossEntropyLoss extends Layer

Linear Supertypes
Layer, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SoftmaxLayerWithCrossEntropyLoss
  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 SoftmaxLayerWithCrossEntropyLoss()

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

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. 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
    SoftmaxLayerWithCrossEntropyLossLayer
  9. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  13. 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
    SoftmaxLayerWithCrossEntropyLossLayer
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. 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
    SoftmaxLayerWithCrossEntropyLossLayer
  16. 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
    SoftmaxLayerWithCrossEntropyLossLayer
  17. final def isInstanceOf[T0]: Boolean

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

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

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

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

    Definition Classes
    AnyRef
  22. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. 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
    SoftmaxLayerWithCrossEntropyLossLayer

Inherited from Layer

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped