Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
AntGro committed Aug 22, 2023
2 parents 81beef1 + fa6b2a8 commit 4bc9255
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MCBO/mcbo/acq_optimizers/message_passing_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ def load_messages(self, new_X: np.ndarray, input_messages: np.ndarray,
f_x_marginal = np.zeros(new_X.shape[0])
for m, intersection_child_var_order in zip(input_messages, intersection_child_var_orders):
marginal_x_child = new_X[:, intersection_child_var_order]
fmin_child, best_x_child = map(np.ndarray,
fmin_child, best_x_child = map(np.array,
zip(*map(lambda sub_x_child: m[tuple(sub_x_child)], marginal_x_child)))

# Update the marginals and x
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bayesian Optimisation & Reinforcement Learning Research

This directory contains official implementations for Bayesian optimisation & Reinforcement Learning works developped by
This directory contains official implementations for Bayesian optimisation & Reinforcement Learning works developed by
Huawei, Noah's Ark Lab.

- Bayesian Optimisation Research
Expand All @@ -25,7 +25,7 @@ Further instructions are provided in the README files associated to each project

<img src="./HEBO/hebo.png" alt="drawing" width="400"/>

Bayesian optimsation library developped by Huawei Noahs Ark Decision Making and Reasoning (DMnR) lab. The <strong>
Bayesian optimsation library developed by Huawei Noahs Ark Decision Making and Reasoning (DMnR) lab. The <strong>
winning submission </strong> to
the [NeurIPS 2020 Black-Box Optimisation Challenge](https://bbochallenge.com/leaderboard).

Expand Down

0 comments on commit 4bc9255

Please sign in to comment.