Package io.github.kirstenali.deepj.layers


package io.github.kirstenali.deepj.layers
  • Class
    Description
    Flexible fully-connected neural network (MLP) built from Linear projections.
    Differentiable module mapping Tensor -> Tensor.
    Fully-connected layer: y = xW + b x: [n x dIn], W: [dIn x dOut], b: [1 x dOut]
    Marker interface for linear projection layers (fully-connected, no activation).