algorithm property
The search algorithm specified for the Study. Possible string values are:
- "ALGORITHM_UNSPECIFIED" : The default algorithm used by Vertex AI for hyperparameter tuning and Vertex AI Vizier.
- "GRID_SEARCH" : Simple grid search within the feasible space. To use
grid search, all parameters must be
INTEGER
,CATEGORICAL
, orDISCRETE
. - "RANDOM_SEARCH" : Simple random search within the feasible space.
Implementation
core.String? algorithm;