C# Class Accord.MachineLearning.BootstrapResult

Afficher le fichier Open project: accord-net/framework

Méthodes publiques

Méthode 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 méthode

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.
Résultat System

Load() public static méthode

Loads a result from a stream.
public static Load ( Stream stream ) : BootstrapResult
stream Stream The stream from which the result is to be deserialized.
Résultat BootstrapResult

Load() public static méthode

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.
Résultat BootstrapResult

Save() public méthode

Saves the result to a stream.
public Save ( Stream stream ) : void
stream Stream The stream to which the result is to be serialized.
Résultat void

Save() public méthode

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