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