10 references to Append
Microsoft.ML.AutoML (6)
API\MulticlassClassificationExperiment.cs (3)
326
pipeline = pipeline.
Append
(preFeaturizer);
332
pipeline = pipeline.
Append
(Context.Transforms.Conversion.MapValueToKey(label, label));
334
pipeline = pipeline.
Append
(Context.Transforms.Conversion.MapKeyToValue(DefaultColumnNames.PredictedLabel, DefaultColumnNames.PredictedLabel));
API\RegressionExperiment.cs (1)
308
pipeline = pipeline.
Append
(preFeaturizer);
API\SweepableExtension.cs (2)
11
return new SweepablePipeline().
Append
(estimator).Append(estimator1);
26
return 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)
189
pipeline = pipeline.
Append
(context.Transforms.CopyColumns("output", "input"));