Skip to content

update max_model when trial fails #6596

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add nullable mark to cfo tuner
  • Loading branch information
LittleLittleCloud committed Mar 21, 2023
commit b546c94c06c99aa53b544af8befbd8a45f73a4b7
2 changes: 1 addition & 1 deletion src/Microsoft.ML.AutoML/Tuner/CostFrugalTuner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ internal class CostFrugalTuner : ITuner
private double _bestLoss;

public CostFrugalTuner(AutoMLExperiment.AutoMLExperimentSettings settings, ITrialResultManager trialResultManager = null)
: this(settings.SearchSpace, settings.SearchSpace.SampleFromFeatureSpace(settings.SearchSpace.Default), trialResultManager.GetAllTrialResults(), settings.Seed)
: this(settings.SearchSpace, settings.SearchSpace.SampleFromFeatureSpace(settings.SearchSpace.Default), trialResultManager?.GetAllTrialResults(), settings.Seed)
{
}

Expand Down