Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix BOLFI parallelisation #481

Merged
merged 4 commits into from
May 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
copy kernel
  • Loading branch information
uremes committed May 27, 2024
commit c61707ea1374246471dc3bb329540ad38bb015c0
2 changes: 1 addition & 1 deletion elfi/methods/bo/gpy_regression.py
Original file line number Diff line number Diff line change
@@ -250,7 +250,7 @@ def _init_gp(self, x, y):
self._kernel_is_default = True

else:
kernel = self.gp_params.get('kernel')
kernel = self.gp_params.get('kernel').copy()

noise_var = self.gp_params.get('noise_var') or np.max(y)**2. / 100.
mean_function = self.gp_params.get('mean_function')