Create Hyperparameter Settings
createHyperparameterSettings(
search = "grid",
tuningMetric = aucMetric,
sampleSize = NULL,
randomSeed = NULL,
generator = NULL
)The type of hyperparameter search to perform. Options are "grid" for grid search, "random" for random search, and "custom" for a user-defined search strategy.
The metric to optimize during hyperparameter tuning. Common
choices include aucMetric and auprcMetric.
Sample size in case of random sampling
Random seed for random sampling
An object with initialize, getNext and finalize methods
for custom flexible hyperparameter tuning.