2 references to IsTrainer
Microsoft.ML.AutoML (2)
Tuner\AutoZeroTuner.cs (2)
39
var trainerEstimators = _sweepablePipeline.Estimators.Where(e => e.Value.EstimatorType.
IsTrainer
()).Select(e => e.Value.EstimatorType.ToString()).ToList();
98
var trainerEstimatorName = pipeline.Estimators.Where(kv => kv.Value.EstimatorType.
IsTrainer
()).First().Key;