1 write to Value
Microsoft.ML.AutoML (1)
Utils\Entity.cs (1)
220Value = value;
13 references to Value
Microsoft.ML.AutoML (13)
SweepableEstimator\MultiModelPipeline.cs (3)
80.Where(e => e is StringEntity se && se.Value != "Nil") 81.Select((se) => _estimators[((StringEntity)se).Value]); 148return new EstimatorEntity(lookupTable[stringEntity.Value]);
SweepableEstimator\SweepablePipeline.cs (7)
90.Where(e => e is StringEntity se && se.Value != "Nil") 93var key = ((StringEntity)se).Value; 111.Where(e => e is StringEntity se && se.Value != "Nil") 112.ToDictionary((se) => se.ToString(), (se) => _estimators[((StringEntity)se).Value]); 158.Where(e => e is StringEntity se && se.Value != "Nil") 161var key = ((StringEntity)se).Value; 208return new EstimatorEntity(lookupTable[stringEntity.Value]);
Tuner\PipelineProposer.cs (2)
200var estimatorTypes = entity.ValueEntities().Where(v => v is StringEntity s && s.Value != "Nil") 204var estimator = pipeline.Estimators[s.Value];
Utils\Entity.cs (1)
227return Value;