Accord.Neuro.Network.Save C# (CSharp) 메소드

Save() 공개 메소드

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.
리턴 void
        public void Save(Stream stream)
        {
            IFormatter formatter = new BinaryFormatter();
            formatter.Serialize(stream, this);
        }

Same methods

Network::Save ( string fileName ) : void