Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

The way to implement GPyOpt from the existing X and Y

Wu Shiauthie edited this page May 26, 2020 · 1 revision

If you have already run this program for iterations and have all the random initial points, you can use

opt_model = GPyOpt.methods.BayesianOptimization(f=f, domain=bounds, X=existing_x, Y=existing_y)

to use the previous data. Caveat: X and Y are all expected to be 2d array.

Clone this wiki locally