roman
roman

Reputation: 670

Is Bayesian hyperparameter tuning algorithm supported in Google ML Engine?

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

Answers (1)

rhaertel80
rhaertel80

Reputation: 8389

If you leave the algorithm set to default, it will use Bayesian optimization (see docs).

Upvotes: 3

Related Questions