Exemplo n.º 1
0
 //Returns the weight between a specified input neuron and this neuron.
 public double GetParentWeight(NeuronalNode parent)
 {
     if (parent == null)
     {
         return(thresholdWeight);
     }
     return(parents[parent]);
 }
Exemplo n.º 2
0
 public void AddNeuronAsChild(NeuronalNode newChild)
 {
     children.Add(newChild);
 }