10 references to Append
Microsoft.ML.AutoML (6)
API\MulticlassClassificationExperiment.cs (3)
326pipeline = pipeline.Append(preFeaturizer); 332pipeline = pipeline.Append(Context.Transforms.Conversion.MapValueToKey(label, label)); 334pipeline = pipeline.Append(Context.Transforms.Conversion.MapKeyToValue(DefaultColumnNames.PredictedLabel, DefaultColumnNames.PredictedLabel));
API\RegressionExperiment.cs (1)
308pipeline = pipeline.Append(preFeaturizer);
API\SweepableExtension.cs (2)
11return new SweepablePipeline().Append(estimator).Append(estimator1); 26return new SweepablePipeline().Append(estimator).Append(estimator1);
Microsoft.ML.AutoML.Tests (4)
AutoMLExperimentTests.cs (3)
106.Append(context.BinaryClassification.Trainers.LightGbm(DatasetUtil.UciAdultLabel, "_Features_", numberOfIterations: 10000)); 299.Append(context.Transforms.Conversion.MapValueToKey(label, label)) 326.Append(context.Transforms.Conversion.MapValueToKey(label, label))
SweepableExtensionTest.cs (1)
189pipeline = pipeline.Append(context.Transforms.CopyColumns("output", "input"));