Accord.Neuro.Network.Save C# (CSharp) Method

Save() public method

Save network to specified file.

The neural network is saved using .NET serialization (binary formatter is used).

public Save ( Stream stream ) : void
stream Stream Stream to save network into.
return void
        public void Save(Stream stream)
        {
            IFormatter formatter = new BinaryFormatter();
            formatter.Serialize(stream, this);
        }

Same methods

Network::Save ( string fileName ) : void