Bruno Abreu Calfa
Results
12
issues of
Bruno Abreu Calfa
hyperopt seems to be performing poorly on a simple constrained optimization problem. min f = 2x_1^2 + x_2^2 s.t. x_1 + x_2 = 1 The code is given below. Even...
I'm getting this error when trying to optimize the hyperparameters of the kernels of `sklearn`'s `GaussianProcessRegressor`. For example: ``` space = hp.choice("regressor_type", [ { "type": "GPR", "kernel": hp.choice("GPR_kernel", [RBF(length_scale=hp.uniform("GPR_RBF_length_scale", 1E-1,...