18 references to SuggestedTrainer
Microsoft.ML.AutoML (3)
Experiment\RecipeInference.cs (1)
23var learner = new SuggestedTrainer(mlContext, trainerExtension, columnInfo);
Experiment\SuggestedPipeline.cs (1)
90trainer = new SuggestedTrainer(context, trainerExtension, columnInfo, hyperParamSet);
Experiment\SuggestedTrainer.cs (1)
41return new SuggestedTrainer(_mlContext, _trainerExtension, _columnInfo, HyperParamSet?.Clone());
Microsoft.ML.AutoML.Tests (12)
InferredPipelineTests.cs (10)
26var trainer1 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo); 27var trainer2 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo); 36trainer1 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo, hyperparams1); 37trainer2 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo); 45trainer1 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo, hyperparams1); 46trainer2 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo, hyperparams2); 52trainer1 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo); 53trainer2 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo); 61trainer1 = new SuggestedTrainer(context, new SdcaLogisticRegressionBinaryExtension(), columnInfo); 62trainer2 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), columnInfo);
SuggestedPipelineBuilderTests.cs (2)
68return new SuggestedTrainer(_context, 75return new SuggestedTrainer(_context,
Microsoft.ML.CodeGenerator.Tests (3)
ApprovalTests\ConsoleCodeGeneratorTests.cs (3)
603var trainer1 = new SuggestedTrainer(context, new LightGbmBinaryExtension(), new ColumnInformation(), hyperparams1); 640var trainer1 = new SuggestedTrainer(context, new LightGbmRegressionExtension(), new ColumnInformation(), hyperparams1); 1098var trainer1 = new SuggestedTrainer(context, new FastForestOvaExtension(), new ColumnInformation(), hyperparams1);