Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into multi-task-visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
sgbaird committed Sep 21, 2024
2 parents 3826f8f + 1679c04 commit 8981d11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/curriculum/concepts/multitask/multitask.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ Check out our multitask tutorial where we apply multitask optimization to the jo
Swersky K, Snoek J, Adams RP. Multi-task bayesian optimization. Advances in neural information processing systems. 2013. [🔗](https://proceedings.neurips.cc/paper/2013/hash/f33ba15effa5c10e873bf3842afb46a6-Abstract.html)

Bonilla EV, Chai K, Williams C. Multi-task Gaussian process prediction. Advances in neural information processing systems. 2007. [🔗](https://proceedings.neurips.cc/paper_files/paper/2007/hash/66368270ffd51418ec58bd793f2d9b1b-Abstract.html)

Gaussian Process Summer School: https://youtu.be/VAQRguYCoDI
2 changes: 2 additions & 0 deletions src/honegumi/ax/main.py.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ X_train = pd.DataFrame([
# Define y_train (normally the values would be supplied directly instead of calculating here)
y_train = [{{ objective_function }}(row["x1"], row["x2"]{% if composition_constraint %}, row["x3"]{% endif %}{% if categorical %}, row["c1"]{% endif %}) for _, row in X_train.iterrows()]

# See https://youtu.be/4tnaL9ts6CQ for simple human-in-the-loop BO instructions

# Define the number of training examples
n_train = len(X_train)
{%- endif %}
Expand Down

0 comments on commit 8981d11

Please sign in to comment.