Exemplo n.º 1
0
        public virtual void Compute()
        {
            var sum = Dendrites.Sum(dendrite => dendrite.Value * dendrite.Weight);

            Axon.Value = Activation(sum);
        }
Exemplo n.º 2
0
 public void Calculate()
 {
     Value = Dendrites.Sum(x => x.Weight * x.Neuron.Value);
 }