Tensor forward(Tensor input) { var x = fc1.forward(input); x = activation.forward(x); return fc2.forward(x); }