2 types derived from ValueEntity
Microsoft.ML.AutoML (2)
Utils\Entity.cs (2)
216
internal class StringEntity :
ValueEntity
231
internal class EstimatorEntity :
ValueEntity
6 references to ValueEntity
Microsoft.ML.AutoML (6)
Utils\Entity.cs (6)
24
if (entity is
ValueEntity
|| entity == null)
71
if (simplifiedEntity is
ValueEntity
|| simplifiedEntity is null || simplifiedEntity is ConcatenateEntity)
83
public static IEnumerable<
ValueEntity
> ValueEntities(this Entity entity)
87
return new List<
ValueEntity
>();
90
if (entity is
ValueEntity
)
92
return new[] { entity as
ValueEntity
};