2 writes to _estimators
Microsoft.ML.AutoML (2)
SweepableEstimator\SweepablePipeline.cs (2)
68
_estimators
= new Dictionary<string, SweepableEstimator>();
74
_estimators
= estimators;
9 references to _estimators
Microsoft.ML.AutoML (9)
SweepableEstimator\SweepablePipeline.cs (9)
31
foreach (var kv in
_estimators
)
52
var kvPairs =
_estimators
.Select((e, i) => new KeyValuePair<string, Parameter>(i.ToString(), e.Value.Parameter));
79
public Dictionary<string, SweepableEstimator> Estimators { get =>
_estimators
; }
94
var estimator =
_estimators
[key];
112
.ToDictionary((se) => se.ToString(), (se) =>
_estimators
[((StringEntity)se).Value]);
138
entity = CreateSweepableEntityFromEntity(pipeline._schema, pipeline.
_estimators
);
143
entity += CreateSweepableEntityFromEntity(pipeline._schema, pipeline.
_estimators
);
162
var estimator =
_estimators
[key];
174
var estimators =
_estimators
.ToDictionary(x => x.Key, x => x.Value);