AForge.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 ( System.Stream stream ) : void
stream System.Stream Stream to save network into.
return void
		public void Save(Stream stream)
		{
			throw new NotImplementedException();
		}

Same methods

Network::Save ( string fileName ) : void