C# Class Accord.MachineLearning.BootstrapResult

Mostra file Open project: accord-net/framework

Public Methods

Method Description
BootstrapResult ( Bootstrap owner, BootstrapValues models ) : System

Initializes a new instance of the BootstrapResult class.

Load ( Stream stream ) : BootstrapResult

Loads a result from a stream.

Load ( string path ) : BootstrapResult

Loads a result from a stream.

Save ( Stream stream ) : void

Saves the result to a stream.

Save ( string path ) : void

Saves the result to a stream.

Method Details

BootstrapResult() public method

Initializes a new instance of the BootstrapResult class.
public BootstrapResult ( Bootstrap owner, BootstrapValues models ) : System
owner Bootstrap The that is creating this result.
models BootstrapValues The models created during the cross-validation runs.
return System

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

Load() public static method

Loads a result from a stream.
public static Load ( string path ) : BootstrapResult
path string The path to the file from which the result is to be deserialized.
return BootstrapResult

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

Save() public method

Saves the result to a stream.
public Save ( string path ) : void
path string The stream to which the result is to be serialized.
return void