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

Iterative branch and bound #302

Merged
merged 31 commits into from
Oct 23, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e3fe5e8
add polynomial kernel
Oct 5, 2023
342c3bc
add polynomial kernel
Oct 5, 2023
300c656
add polynomial kernel
Oct 5, 2023
1092002
add polynomial kernel
Oct 5, 2023
4ea3a08
add quadratic surrogate
Oct 5, 2023
2a2baec
adding linear kernel not necessary
Oct 5, 2023
c95f26c
adding linear kernel not necessary
Oct 5, 2023
6e0fbc9
adding linear kernel not necessary
Oct 5, 2023
26be3f6
fix test
Oct 5, 2023
dab5f7f
change kernel tzpe hint
Oct 5, 2023
a7bf562
generalize quadratic surrogate
Oct 6, 2023
d1efb3e
Merge branch 'main' into 286-add-surrogate-models-that-can-extrapolate
dlinzner-bcs Oct 6, 2023
62d7908
generalize quadratic surrogate
Oct 6, 2023
ebbff71
generalize quadratic surrogate
Oct 6, 2023
081ab8f
fix init
Oct 6, 2023
a0551b7
fix init
Oct 6, 2023
5bbe12e
fix init
Oct 6, 2023
2ce616e
fix init
Oct 6, 2023
4a69e53
fix init
Oct 9, 2023
34aa157
add polynomial_surrogate to AnyBotochSurrogate
Oct 10, 2023
01f5d21
add test that botorch surrogate can be composed
Oct 10, 2023
8d1351c
add test that botorch surrogate can be composed
Oct 10, 2023
fe64032
Merge branch 'main' into 286-add-surrogate-models-that-can-extrapolate
dlinzner-bcs Oct 10, 2023
93320de
add test that botorch surrogate can be composed
Oct 10, 2023
12a7c04
add test that botorch surrogate can be composed
Oct 11, 2023
ebb41fc
add test that botorch surrogate can be composed
Oct 12, 2023
9c235b3
added test for iterative strategy
Oct 20, 2023
4be71bf
added iterative strategy
Oct 20, 2023
e065647
286 add surrogate models that can extrapolate (#300) (#303)
dlinzner-bcs Oct 20, 2023
fd638b1
rmv unneccessary private flagged variables
Oct 20, 2023
d87aa1e
made strategy selection clearer
Oct 23, 2023
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
Prev Previous commit
Next Next commit
adding linear kernel not necessary
linznedd committed Oct 5, 2023
commit 6e0fbc921fc0fc87f263d747c26d1b001528508a
1 change: 1 addition & 0 deletions bofire/surrogates/mapper.py
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@
data_models.SaasSingleTaskGPSurrogate: SaasSingleTaskGPSurrogate,
data_models.XGBoostSurrogate: XGBoostSurrogate,
data_models.LinearSurrogate: SingleTaskGPSurrogate,
data_models.QuadraticSurrogate: SingleTaskGPSurrogate,
data_models.TanimotoGPSurrogate: SingleTaskGPSurrogate,
}