Accord.Neuro.Networks.DeepBeliefNetwork.Save C# (CSharp) Method

Save() public method

Saves the network to a stream.
public Save ( Stream stream ) : void
stream Stream The stream to which the network is to be serialized.
return void
        public new void Save(Stream stream)
        {
            BinaryFormatter b = new BinaryFormatter();
            b.Serialize(stream, this);
        }

Same methods

DeepBeliefNetwork::Save ( string path ) : void