feedForward method

FVector feedForward(
  1. FVector input
)

Implementation

FVector feedForward(FVector input) {
  return ((weights.multiplyVector(input)) + bias)
    ..apply(activationFunc.func, activationFunc.funcSIMD);
}