-
Notifications
You must be signed in to change notification settings - Fork 413
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
FullyBayesian LogEI #2058
FullyBayesian LogEI #2058
Conversation
This pull request was exported from Phabricator. Differential Revision: D50413044 |
Codecov Report
@@ Coverage Diff @@
## main #2058 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 179 179
Lines 15918 15926 +8
=========================================
+ Hits 15918 15926 +8
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
431ed63
to
37a3cd7
Compare
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Differential Revision: D50413044
This pull request was exported from Phabricator. Differential Revision: D50413044 |
37a3cd7
to
75ca09f
Compare
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Differential Revision: D50413044
This pull request was exported from Phabricator. Differential Revision: D50413044 |
75ca09f
to
5ae9436
Compare
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Differential Revision: D50413044
This pull request was exported from Phabricator. Differential Revision: D50413044 |
5ae9436
to
54bed1f
Compare
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Differential Revision: D50413044
This pull request was exported from Phabricator. Differential Revision: D50413044 |
54bed1f
to
420f26f
Compare
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Reviewed By: dme65, Balandat Differential Revision: D50413044
This pull request was exported from Phabricator. Differential Revision: D50413044 |
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Reviewed By: dme65, Balandat Differential Revision: D50413044
420f26f
to
1bd4071
Compare
This pull request was exported from Phabricator. Differential Revision: D50413044 |
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Reviewed By: dme65, Balandat Differential Revision: D50413044
1bd4071
to
2c4aa6b
Compare
This pull request was exported from Phabricator. Differential Revision: D50413044 |
Summary: This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute ``` LogEI(x) = log( E_SAAS[ E_f[ f_SAAS(x) ] ] ), ``` by replacing `mean` with `logsumexp` in `t_batch_mode_transform`, where `f` is the GP with hyper-parameters `SAAS` evaluated at `x`. Without the change, the acqf would compute ``` ELogEI(x) = E_SAAS[ log( E_f[ f_SAAS(x)] ) ]. ``` Reviewed By: dme65, Balandat Differential Revision: D50413044
2c4aa6b
to
fb85460
Compare
This pull request was exported from Phabricator. Differential Revision: D50413044 |
This pull request has been merged in 0af3ca5. |
Summary:
This commit adds support for combining LogEI acquisition functions with fully Bayesian models. In particular, the commit adds the option to compute
by replacing
mean
withlogsumexp
int_batch_mode_transform
, wheref
is the GP with hyper-parametersSAAS
evaluated atx
. Without the change, the acqf would computeDifferential Revision: D50413044