- All Implemented Interfaces:
Layer, Projection, Trainable
Fully-connected layer: y = xW + b
x: [n x dIn], W: [dIn x dOut], b: [1 x dOut]
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.github.kirstenali.deepj.training.Trainable
zeroGrad
-
Constructor Details
-
Linear
public Linear(int dIn,
int dOut,
Random rnd)
-