10 references to CategoricalFeature
Microsoft.ML.AutoML (10)
API\AutoCatalog.cs (1)
826
var catalogFeatures = columnPurposes.Where(c => c.Purpose == ColumnPurpose.
CategoricalFeature
);
ColumnInference\ColumnGroupingInference.cs (2)
87
if (purpose == ColumnPurpose.
CategoricalFeature
||
121
case ColumnPurpose.
CategoricalFeature
:
ColumnInference\ColumnInformationUtil.cs (2)
36
return ColumnPurpose.
CategoricalFeature
;
89
case ColumnPurpose.
CategoricalFeature
:
ColumnInference\PurposeInference.cs (1)
152
column.SuggestedPurpose = ColumnPurpose.
CategoricalFeature
;
DatasetDimensions\DatasetDimensionsApi.cs (1)
31
if (itemType.IsText() && purpose.Purpose == ColumnPurpose.
CategoricalFeature
)
TransformInference\TransformInference.cs (3)
253
if (column.Purpose != ColumnPurpose.
CategoricalFeature
)
453
c.Purpose == ColumnPurpose.
CategoricalFeature
|| c.Purpose == ColumnPurpose.TextFeature ||
465
intermediateCols.First().Purpose == ColumnPurpose.
CategoricalFeature
||