5 instantiations of SweepableEstimatorPipeline
Microsoft.ML.AutoML (3)
SweepableEstimator\Converter\SweepableEstimatorPipelineConverter.cs (1)
20var pipeline = new SweepableEstimatorPipeline(estimators, parameter);
SweepableEstimator\MultiModelPipeline.cs (1)
83return new SweepableEstimatorPipeline(pipelineNodes);
SweepableEstimator\SweepableEstimatorPipeline.cs (1)
72return new SweepableEstimatorPipeline(_estimators.Concat(new[] { estimator }));
Microsoft.ML.AutoML.Tests (2)
SweepableEstimatorPipelineTest.cs (2)
50var pipeline = new SweepableEstimatorPipeline(); 133var pipeline = new SweepableEstimatorPipeline(new SweepableEstimator[] { concat, replaceMissingValue, oneHot, lightGbm, fastTree });
12 references to SweepableEstimatorPipeline
Microsoft.ML.AutoML (6)
SweepableEstimator\Converter\SweepableEstimatorPipelineConverter.cs (4)
13internal class SweepableEstimatorPipelineConverter : JsonConverter<SweepableEstimatorPipeline> 15public override SweepableEstimatorPipeline Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) 20var pipeline = new SweepableEstimatorPipeline(estimators, parameter); 25public override void Write(Utf8JsonWriter writer, SweepableEstimatorPipeline value, JsonSerializerOptions options)
SweepableEstimator\MultiModelPipeline.cs (1)
76public SweepableEstimatorPipeline BuildSweepableEstimatorPipeline(string schema)
SweepableEstimator\SweepableEstimatorPipeline.cs (1)
70public SweepableEstimatorPipeline Append(SweepableEstimator estimator)
Microsoft.ML.AutoML.Tests (6)
SweepableEstimatorPipelineTest.cs (6)
50var pipeline = new SweepableEstimatorPipeline(); 95var pipeline = CreateSweepbaleEstimatorPipeline(); 109var singleModelPipeline = multiModelPipeline.BuildSweepableEstimatorPipeline(pipelines[0]); 120var singleModelPipeline = CreateSweepbaleEstimatorPipeline(); 125private SweepableEstimatorPipeline CreateSweepbaleEstimatorPipeline() 133var pipeline = new SweepableEstimatorPipeline(new SweepableEstimator[] { concat, replaceMissingValue, oneHot, lightGbm, fastTree });