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();
}
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset