C# 클래스 Accord.MachineLearning.BootstrapResult

파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
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