-
Notifications
You must be signed in to change notification settings - Fork 43
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
various speed ups #319
various speed ups #319
Conversation
This pull request was exported from Phabricator. Differential Revision: D49388668 |
Summary: Made AEPsych faster in the following ways: - Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs. - Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize. - "max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg). A query method was added to the python client to test these new features. Differential Revision: D49388668
88498ee
to
53b88b9
Compare
This pull request was exported from Phabricator. Differential Revision: D49388668 |
Summary: Made AEPsych faster in the following ways: - Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs. - Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize. - "max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg). A query method was added to the python client to test these new features. Differential Revision: D49388668
53b88b9
to
8baf5c1
Compare
This pull request was exported from Phabricator. Differential Revision: D49388668 |
Summary: Made AEPsych faster in the following ways: - Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs. - Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize. - "max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg). A query method was added to the python client to test these new features. Reviewed By: strykerb Differential Revision: D49388668
8baf5c1
to
6077299
Compare
This pull request was exported from Phabricator. Differential Revision: D49388668 |
Summary: Made AEPsych faster in the following ways: - Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs. - Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize. - "max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg). A query method was added to the python client to test these new features. Reviewed By: strykerb Differential Revision: D49388668
6077299
to
4c42740
Compare
This pull request was exported from Phabricator. Differential Revision: D49388668 |
Summary: Made AEPsych faster in the following ways: - Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs. - Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize. - "max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg). A query method was added to the python client to test these new features. Reviewed By: strykerb Differential Revision: D49388668
Summary: Made AEPsych faster in the following ways: - Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs. - Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize. - "max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg). A query method was added to the python client to test these new features. Reviewed By: strykerb Differential Revision: D49388668
4c42740
to
432eade
Compare
This pull request was exported from Phabricator. Differential Revision: D49388668 |
432eade
to
4a19c0d
Compare
This pull request was exported from Phabricator. Differential Revision: D49388668 |
This pull request has been merged in 1c083e8. |
Summary:
Made AEPsych faster in the following ways:
Now takes advantage of optimize_acqf's timeout_sec argument to more reliably limit the amount of time spent optimizing the acqf using the max_gen_time option in configs.
Changes the optimization algorithm for inverse model querying to use botorch's optimize_acqf, which should be faster and more accurate than scipy.minimize.
"max_time" can be sent in query messages to limit the amount of time, in seconds, the model will spend searching for the queried value (using the aforementioned timeout_sec arg).
A query method was added to the python client to test these new features.
Differential Revision: D49388668