Share via


RunDetail.Estimator Property

Definition

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

public Microsoft.ML.IEstimator<Microsoft.ML.ITransformer> Estimator { get; }
member this.Estimator : Microsoft.ML.IEstimator<Microsoft.ML.ITransformer>
Public ReadOnly Property Estimator As IEstimator(Of ITransformer)

Property Value

Remarks

You can call Fit(IDataView) on this estimator to re-train your pipeline on any IEstimator<TTransformer>.

Applies to