Package

toolkit.neuralnetwork

policy

Permalink

package policy

Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class ConvolutionalLayerPolicy extends AnyRef

    Permalink

    A parameter to direct the implementation of a convolutional layer.

  2. trait Distribution extends Serializable

    Permalink

    Case classes for picking randomly from different types of distributions

  3. case class FCInit(inputLen: Int) extends WeightInitPolicy with Product with Serializable

    Permalink
  4. trait LearningRule extends AnyRef

    Permalink
  5. case class NormalDistribution(mu: Float, sigma: Float) extends Distribution with Product with Serializable

    Permalink
  6. case class StandardLearningRule(learningRate: Float, momentum: Float, weightDecay: Float) extends LearningRule with Product with Serializable

    Permalink
  7. case class UniformDistribution(scale: Float, offset: Float) extends Distribution with Product with Serializable

    Permalink
  8. trait WeightInitPolicy extends AnyRef

    Permalink

Value Members

  1. object Best extends ConvolutionalLayerPolicy with Product with Serializable

    Permalink

    Let the platform choose the implementation, guided by such parameters as border policy and downsampling use.

  2. object ConvInit extends WeightInitPolicy with Product with Serializable

    Permalink
  3. object Freq extends ConvolutionalLayerPolicy with Product with Serializable

    Permalink

    Use a frequency-domain implementation of convolution (i.e.

    Use a frequency-domain implementation of convolution (i.e. FFT - multiply - InverseFFT).

  4. object Space extends ConvolutionalLayerPolicy with Product with Serializable

    Permalink

    Use a space-domain implementation of convolution (i.e.

    Use a space-domain implementation of convolution (i.e. standard convolution).

  5. object StubInit extends WeightInitPolicy with Product with Serializable

    Permalink
  6. object ZeroInit extends WeightInitPolicy with Product with Serializable

    Permalink

Ungrouped