Accord.Neuro.Neuron.Randomize C# (CSharp) Method

Randomize() public method

Randomize neuron.
Initialize neuron's weights with random values specified by the RandGenerator.
public Randomize ( ) : void
return void
        public virtual void Randomize()
        {
            rand.Generate(weights.Length, weights);
        }