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