machinelearning
machinelearning copied to clipboard
Fail to find available configs for given trainers: SdcaLogisticRegressionBinary (ML.net 3)
System Information (please complete the following information):
- OS & Version: Linux Apline
- ML.NET Version: 3.0
- .NET Version: .Net 5
Describe the bug
var settings = new BinaryExperimentSettings
{
MaxExperimentTimeInSeconds = 30 * 60,
MaxModels = 10,
MaximumMemoryUsageInMegaByte = 7500,
};
ExperimentResult<BinaryClassificationMetrics> experimentResult = experiment
.Execute(trainDataView, nameof(MlModelRow.Label), nameof(MlModelRow.LearningGroup));
If we try to use all trainers via AutoML internally we get "Fail to find available configs for given trainers: SdcaLogisticRegressionBinary" and can't use Sdca trainer.