case classAffineOutputTransform[FV](numOutputs: Int, numInputs: Int, innerTransform: Transform[FV, DenseVector[Double]], includeBias: Boolean = true) extends OutputTransform[FV, DenseVector[Double]] with Product with Serializable
Used at the output layer when we're only going to need some of the possible ouputs;
it exposes the penultimate layer and then the Layer allows you to pass the results
from that back in (caching it elsewhere) and only compute certain cells in the
output layer (activationsFromPenultimateDot).
Linear Supertypes
Product, Equals, OutputTransform[FV, DenseVector[Double]], Serializable, Serializable, AnyRef, Any
case classOutputLayer(weights: DenseMatrix[Double], bias: DenseVector[Double], innerLayer: Layer) extends OutputTransform.OutputLayer[FV, DenseVector[Double]] with Product with Serializable
Value Members
final def!=(arg0: Any): Boolean
Definition Classes
AnyRef → Any
final def##(): Int
Definition Classes
AnyRef → Any
final def==(arg0: Any): Boolean
Definition Classes
AnyRef → Any
final defasInstanceOf[T0]: T0
Definition Classes
Any
defclipHiddenWeightVectors(weights: DenseVector[Double], norm: Double, outputLayer: Boolean): Unit
Used at the output layer when we're only going to need some of the possible ouputs; it exposes the penultimate layer and then the Layer allows you to pass the results from that back in (caching it elsewhere) and only compute certain cells in the output layer (activationsFromPenultimateDot).