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

Load() public static method

Loads a result from a stream.
public static Load ( Stream stream ) : BootstrapResult
stream Stream The stream from which the result is to be deserialized.
return BootstrapResult
        public static BootstrapResult Load(Stream stream)
        {
            BinaryFormatter b = new BinaryFormatter();
            return (BootstrapResult)b.Deserialize(stream);
        }

Same methods

BootstrapResult::Load ( string path ) : BootstrapResult