algorithm property

String? algorithm
getter/setter pair

The search algorithm specified for the study. Possible string values are:

  • "ALGORITHM_UNSPECIFIED" : The default algorithm used by the Cloud AI Platform Vizier service.
  • "GAUSSIAN_PROCESS_BANDIT" : Gaussian Process Bandit.
  • "GRID_SEARCH" : Simple grid search within the feasible space. To use grid search, all parameters must be INTEGER, CATEGORICAL, or DISCRETE.
  • "RANDOM_SEARCH" : Simple random search within the feasible space.

Implementation

core.String? algorithm;