Class ML1OptimizerSettings
Implements
System.IEquatable<APIBase>
Inherited Members
Namespace: SMT.MastaAPI.MathUtility.BayesianOptimization
Assembly: SMT.MastaAPI.15.0.dll
Syntax
public sealed class ML1OptimizerSettings : APIBase, IEquatable<APIBase>
Properties
InitialCapacity
Declaration
public int InitialCapacity { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
NumberOfInitialSamples
It is recommended to set number of initial samples to be a power of 2. This generates initial samples using a Sobol' Sequence. If number of initial samples is not a power of 2 then a Latin Hypercube Sample will be used.
Declaration
public int NumberOfInitialSamples { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RandomSeed
Declaration
public int RandomSeed { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ResultStorageOption
Results storage can be memory intensive. Saving a subset of iteration results could save a significant amount of memory.
Declaration
public BayesianOptimizationResultsStorageOption ResultStorageOption { get; set; }
Property Value
Type | Description |
---|---|
BayesianOptimizationResultsStorageOption |
Implements
System.IEquatable<T>