RunDetail<TMetrics> Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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 |
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, |
ValidationMetrics |
Metrics of how the trained model performed on the validation data during the run. |