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)
31foreach (var kv in _estimators) 52var kvPairs = _estimators.Select((e, i) => new KeyValuePair<string, Parameter>(i.ToString(), e.Value.Parameter)); 79public Dictionary<string, SweepableEstimator> Estimators { get => _estimators; } 94var estimator = _estimators[key]; 112.ToDictionary((se) => se.ToString(), (se) => _estimators[((StringEntity)se).Value]); 138entity = CreateSweepableEntityFromEntity(pipeline._schema, pipeline._estimators); 143entity += CreateSweepableEntityFromEntity(pipeline._schema, pipeline._estimators); 162var estimator = _estimators[key]; 174var estimators = _estimators.ToDictionary(x => x.Key, x => x.Value);