Calculating values

To calculate values, we take the output from our Sigmoid function and add to it the bias term:

public virtual double CalculateValue()
{
return Value = Sigmoid.Output(InputSynapses.Sum(a =>a.Weight *
a.InputNeuron.Value) + Bias);
}
..................Content has been hidden....................

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