2 writes to EstimatorType
Microsoft.ML.AutoML (2)
SweepableEstimator\Estimator.cs (2)
15EstimatorType = EstimatorType.Unknown; 21EstimatorType = estimatorType;
9 references to EstimatorType
Microsoft.ML.AutoML (9)
SweepableEstimator\Converter\SweepableEstimatorConverter.cs (1)
30jObject["estimatorType"] = JsonValue.Create(value.EstimatorType);
SweepableEstimator\Estimator.cs (1)
15EstimatorType = EstimatorType.Unknown;
SweepableEstimator\SweepableEstimatorPipeline.cs (1)
91var estimatorName = _estimators.Select(e => e.EstimatorType.ToString());
SweepableEstimator\SweepablePipeline.cs (1)
163return estimator.EstimatorType.ToString();
Tuner\AutoZeroTuner.cs (4)
34pipelineString = string.Join("=>", t.ValueEntities().Select(e => _sweepablePipeline.Estimators[e.ToString()].EstimatorType)), 39var trainerEstimators = _sweepablePipeline.Estimators.Where(e => e.Value.EstimatorType.IsTrainer()).Select(e => e.Value.EstimatorType.ToString()).ToList(); 98var trainerEstimatorName = pipeline.Estimators.Where(kv => kv.Value.EstimatorType.IsTrainer()).First().Key;
Tuner\PipelineProposer.cs (1)
205return estimator.EstimatorType;