Table of Contents

Class AutoMLBudgetOptions

Namespace
AiDotNet.Configuration
Assembly
AiDotNet.dll

Configuration options that control AutoML compute budgets.

public class AutoMLBudgetOptions
Inheritance
AutoMLBudgetOptions
Inherited Members

Remarks

AutoML budgets define how long AutoML is allowed to search and how many trials it can run.

For Beginners: This controls how much time AutoML is allowed to spend searching for a good model. If you want faster results, choose a smaller preset or set a shorter time limit / fewer trials.

Properties

Preset

Gets or sets the budget preset used when explicit overrides are not provided.

public AutoMLBudgetPreset Preset { get; set; }

Property Value

AutoMLBudgetPreset

TimeLimitOverride

Gets or sets an optional time limit override for the AutoML run.

public TimeSpan? TimeLimitOverride { get; set; }

Property Value

TimeSpan?

Remarks

If null, the preset default is used.

TrialLimitOverride

Gets or sets an optional trial limit override for the AutoML run.

public int? TrialLimitOverride { get; set; }

Property Value

int?

Remarks

If null, the preset default is used.