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