14 references to Featurizer
Microsoft.ML.AutoML.Samples (1)
Cifar10.cs (1)
38var pipeline = context.Auto().Featurizer(trainDataset)
Microsoft.ML.AutoML.Tests (13)
AutoFeaturizerTests.cs (4)
48var pipeline = context.Auto().Featurizer(dataset, outputColumnName: "OutputFeature", excludeColumns: new[] { "Label" }); 60var pipeline = context.Auto().Featurizer(dataset, excludeColumns: new[] { "Label" }); 72var pipeline = context.Auto().Featurizer(dataset, excludeColumns: new[] { DatasetUtil.NewspaperChurnLabel }); 85var pipeline = context.Auto().Featurizer(dataset, excludeColumns: new[] { "A16" });
AutoMLExperimentTests.cs (9)
105var pipeline = context.Auto().Featurizer(data, "_Features_", excludeColumns: new[] { DatasetUtil.UciAdultLabel }) 222var pipeline = context.Auto().Featurizer(data, "_Features_", excludeColumns: new[] { DatasetUtil.UciAdultLabel }) 247var pipeline = context.Auto().Featurizer(data, "_Features_", excludeColumns: new[] { DatasetUtil.UciAdultLabel }) 272var pipeline = context.Auto().Featurizer(data, "_Features_", excludeColumns: new[] { DatasetUtil.UciAdultLabel }) 298var pipeline = context.Auto().Featurizer(data, excludeColumns: new[] { label }) 325var pipeline = context.Auto().Featurizer(data, excludeColumns: new[] { label }) 353var pipeline = context.Auto().Featurizer(train, excludeColumns: new[] { label }) 383var pipeline = context.Auto().Featurizer(train, excludeColumns: new[] { label }) 402var pipeline = context.Auto().Featurizer(train, excludeColumns: new[] { label })