2 writes to EstimatorType
Microsoft.ML.AutoML (2)
SweepableEstimator\Estimator.cs (2)
15
EstimatorType
= EstimatorType.Unknown;
21
EstimatorType
= estimatorType;
9 references to EstimatorType
Microsoft.ML.AutoML (9)
SweepableEstimator\Converter\SweepableEstimatorConverter.cs (1)
30
jObject["estimatorType"] = JsonValue.Create(value.
EstimatorType
);
SweepableEstimator\Estimator.cs (1)
15
EstimatorType =
EstimatorType
.Unknown;
SweepableEstimator\SweepableEstimatorPipeline.cs (1)
91
var estimatorName = _estimators.Select(e => e.
EstimatorType
.ToString());
SweepableEstimator\SweepablePipeline.cs (1)
163
return estimator.
EstimatorType
.ToString();
Tuner\AutoZeroTuner.cs (4)
34
pipelineString = string.Join("=>", t.ValueEntities().Select(e => _sweepablePipeline.Estimators[e.ToString()].
EstimatorType
)),
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;
Tuner\PipelineProposer.cs (1)
205
return estimator.
EstimatorType
;