Beispiel #1
0
        public override Neuron Copy()
        {
            InputNeuron n = new InputNeuron();

            n.value = this.value;
            n.name  = this.name;
            n.activationfunction = this.activationfunction;
            return(n);
        }
Beispiel #2
0
 public InputNeuron(InputNeuron n) : base(n)
 {
     //throw new NotImplementedException();
 }