Exemple #1
0
 public Neuron()
 {
     this.Bias      = ServiceRegistry.GetInstance().GetRandom().NextDouble();
     this.Dendrites = new List <Dendrite>();
 }
Exemple #2
0
 public Dendrite()
 {
     this.Weight = ServiceRegistry.GetInstance().GetRandom().NextDouble();
 }