machinelearning icon indicating copy to clipboard operation
machinelearning copied to clipboard

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

Open 80LevelElf opened this issue 1 year ago • 0 comments

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.

80LevelElf avatar Dec 22 '23 10:12 80LevelElf