Megosztás a következőn keresztül:


RunDetail<TMetrics> Class

Definition

Details about an AutoML experiment run.

public sealed class RunDetail<TMetrics> : Microsoft.ML.AutoML.RunDetail
type RunDetail<'Metrics> = class
    inherit RunDetail
Public NotInheritable Class RunDetail(Of TMetrics)
Inherits RunDetail

Type Parameters

TMetrics

Metrics type for the experiment (like BinaryClassificationMetrics).

Inheritance
RunDetail<TMetrics>

Remarks

Over the course of an experiment, many models are evaluated on a dataset. This object contains information about each model evaluated during the AutoML experiment.

Properties

Estimator

An ML.NET IEstimator<TTransformer> that represents the pipeline in this run.

(Inherited from RunDetail)
Exception

Exception encountered during the run. This property is null if no exception was encountered.

Model

Model trained during the run.

RuntimeInSeconds

Runtime in seconds.

(Inherited from RunDetail)
TrainerName

String name of the trainer used in this run. (For instance, "LightGbm".)

(Inherited from RunDetail)
ValidationMetrics

Metrics of how the trained model performed on the validation data during the run.

Applies to