Packages

object ConvNet_1D

The ConvNet_1D companion object provides factory functions for the ConvNet_1D class.

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

Value Members

  1. def apply(xy: MatrixD): ConvNet_1D
  2. def updateParam(x_: MatriD, z: MatriD, d0: MatriD, d1: MatriD, eta: Double, c: VectoD, b: NetParam): Unit

    Update the parameters: the weights in the convolutional filter 'c' and the weights biases in the fully-connected layer 'b'.

    Update the parameters: the weights in the convolutional filter 'c' and the weights biases in the fully-connected layer 'b'.

    x_

    the training/full data/input matrix

    z

    the training/full response/output matrix

    d0

    the convolutional layer delta

    d1

    the fully-connectd layer delta

    c

    the convolution filter vector

    b

    the fully-connectd layer parameters