8 references to Estimators
Microsoft.ML.AutoML (5)
SweepableEstimator\Converter\SweepablePipelineConverter.cs (1)
30
jsonObject["estimators"] = JsonValue.Create(value.
Estimators
);
Tuner\AutoZeroTuner.cs (3)
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)
204
var estimator = pipeline.
Estimators
[s.Value];
Microsoft.ML.AutoML.Tests (3)
SweepableExtensionTest.cs (3)
149
.Append(context.Auto().MultiClassification().
Estimators
.Select(kv => kv.Value).ToArray());
162
.Append(context.Auto().MultiClassification().
Estimators
.Select(kv => kv.Value).ToArray());
175
.Append(context.Auto().MultiClassification().
Estimators
.Select(kv => kv.Value).ToArray());