dotnet / machinelearning

ML.NET is an open source and cross-platform machine learning framework for .NET.
https://dot.net/ml
MIT License
9.02k stars 1.88k forks source link

Fail to find available configs for given trainers: SdcaLogisticRegressionBinary (ML.net 3) #6926

Open 80LevelElf opened 9 months ago

80LevelElf commented 9 months ago

System Information (please complete the following information):

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.