C# Класс Accord.MachineLearning.BootstrapResult

Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

BootstrapResult() публичный Метод

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.
Результат System

Load() публичный статический Метод

Loads a result from a stream.
public static Load ( Stream stream ) : BootstrapResult
stream Stream The stream from which the result is to be deserialized.
Результат BootstrapResult

Load() публичный статический Метод

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.
Результат BootstrapResult

Save() публичный Метод

Saves the result to a stream.
public Save ( Stream stream ) : void
stream Stream The stream to which the result is to be serialized.
Результат void

Save() публичный Метод

Saves the result to a stream.
public Save ( string path ) : void
path string The stream to which the result is to be serialized.
Результат void