TrainResult<TMetrics> Class

Definition

Result of a pipeline trained on a cross validation fold.

public sealed class TrainResult<TMetrics>
type TrainResult<'Metrics> = class
Public NotInheritable Class TrainResult(Of TMetrics)

Type Parameters

TMetrics

Metrics type for the run.

Inheritance
TrainResult<TMetrics>

Properties

Exception

Exception encountered while training the fold. This property is null if no exception was encountered.

Model

Model trained on the fold during the run.

ValidationMetrics

Each fold has training data and validation data. A model trained on the folds's training data is evaluated against the validation data, and the metrics for that calculation are emitted here.

Applies to