Encog.Neural.Flat.FlatNetwork.EncodeNetwork C# (CSharp) Method

EncodeNetwork() public method

Encode the neural network to an array of doubles. This includes the network weights. To read this into a neural network, use the decodeNetwork method.
public EncodeNetwork ( ) : double[]
return double[]
        public double[] EncodeNetwork()
        {
            return _weights;
        }