Accord.MachineLearning.BootstrapResult.Save C# (CSharp) Method

Save() public method

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

Same methods

BootstrapResult::Save ( string path ) : void