Package

ml.combust.mleap.core

ann

Permalink

package ann

Most of the contents of this package were taken from Spark and adapter for use without training or a Spark Context

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ann
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ActivationFunction extends Serializable

    Permalink

    Trait for functions and their derivatives for functional layers

  2. class AffineLayer extends Layer

    Permalink

    Layer properties of affine transformations, that is y=A*x+b

  3. class AffineLayerModel extends LayerModel

    Permalink

    Model of Affine layer

  4. class FeedForwardModel extends TopologyModel

    Permalink

    Model of Feed Forward Neural Network.

    Model of Feed Forward Neural Network. Implements forward, gradient computation and can return weights in vector format.

  5. class FeedForwardTopology extends Topology

    Permalink

    Feed forward ANN

  6. class FunctionalLayer extends Layer

    Permalink

    Functional layer properties, y = f(x)

  7. class FunctionalLayerModel extends LayerModel

    Permalink

    Functional layer model.

    Functional layer model. Holds no weights.

  8. trait Layer extends Serializable

    Permalink

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

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

  9. trait LayerModel extends Serializable

    Permalink

    Trait that holds Layer weights (or parameters).

    Trait that holds Layer weights (or parameters). Implements functions needed for forward propagation, computing delta and gradient. Can return weights in Vector format.

  10. trait LossFunction extends AnyRef

    Permalink

    Trait for loss function

  11. class SigmoidFunction extends ActivationFunction

    Permalink

    Implements Sigmoid activation function

  12. class SigmoidLayerModelWithSquaredError extends FunctionalLayerModel with LossFunction

    Permalink
  13. class SigmoidLayerWithSquaredError extends Layer

    Permalink
  14. class SoftmaxLayerModelWithCrossEntropyLoss extends LayerModel with LossFunction

    Permalink
  15. class SoftmaxLayerWithCrossEntropyLoss extends Layer

    Permalink
  16. trait Topology extends Serializable

    Permalink

    Trait for the artificial neural network (ANN) topology properties

  17. trait TopologyModel extends Serializable

    Permalink

    Trait for ANN topology model

Value Members

  1. object AffineLayerModel extends Serializable

    Permalink

    Fabric for Affine layer models

  2. object ApplyInPlace

    Permalink

    Implements in-place application of functions in the arrays

  3. object BreezeUtil

    Permalink

    In-place DGEMM and DGEMV for Breeze

    In-place DGEMM and DGEMV for Breeze

    Annotations
    @SparkCode()
  4. object FeedForwardModel extends Serializable

    Permalink

    Fabric for feed forward ANN models

  5. object FeedForwardTopology extends Serializable

    Permalink

    Factory for some of the frequently-used topologies

  6. object SparkCodeHolder extends Product with Serializable

    Permalink
    Annotations
    @SparkCode()

Inherited from AnyRef

Inherited from Any

Ungrouped