- Hands-On Neural Network Programming with C#
- Matt R. Cole
- 31字
- 2025-02-24 05:32:27
Computing forward propagation
This function is where we Compute the forward propagation value based upon the values provided, as follows:
public double[] Compute(params double[] inputs)
{
ForwardPropagate(inputs);
return OutputLayer.Select(a =>a.Value).ToArray();
}