Reputation: 670
According to https://cloud.google.com/ml-engine/reference/rest/v1/projects.jobs#Algorithm there are only grid search and random search algorithms available.
According to this blog post https://cloud.google.com/blog/products/gcp/hyperparameter-tuning-cloud-machine-learning-engine-using-bayesian-optimization Bayesian is supported.
So, if supported, how can I tune hyperparameters using Bayesian optimization on Google Cloud ML Engine?
Upvotes: 1
Views: 84
Reputation: 8389
If you leave the algorithm set to default, it will use Bayesian optimization (see docs).
Upvotes: 3