public virtual Neuron CopyNeuronTo(Neuron neuron) { Cells.CopyTo(neuron.Cells, 0); return(neuron); }
public virtual void PreUpdateWeights(Neuron neuron, float[] errs) { neuron.Cells.CopyTo(Cells, 0); errs.CopyTo(Errs, 0); }