5 instantiations of StringEntity
Microsoft.ML.AutoML (5)
SweepableEstimator\MultiModelPipeline.cs (2)
15private static readonly StringEntity _nilStringEntity = new StringEntity("Nil"); 186return new StringEntity(id);
SweepableEstimator\SweepablePipeline.cs (2)
22private static readonly StringEntity _nilStringEntity = new StringEntity("Nil"); 246return new StringEntity(id);
Utils\Entity.cs (1)
137return new StringEntity(i.Identifier.ValueText);
15 references to StringEntity
Microsoft.ML.AutoML (15)
SweepableEstimator\MultiModelPipeline.cs (4)
15private static readonly StringEntity _nilStringEntity = new StringEntity("Nil"); 80.Where(e => e is StringEntity se && se.Value != "Nil") 81.Select((se) => _estimators[((StringEntity)se).Value]); 141if (entity is StringEntity stringEntity)
SweepableEstimator\SweepablePipeline.cs (8)
22private static readonly StringEntity _nilStringEntity = new StringEntity("Nil"); 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; 201if (entity is StringEntity stringEntity)
Tuner\PipelineProposer.cs (3)
200var estimatorTypes = entity.ValueEntities().Where(v => v is StringEntity s && s.Value != "Nil") 203var s = v as StringEntity;