-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #386 from JaxGaussianProcesses/tchristie/bo
Add decision making functionality
- Loading branch information
Showing
32 changed files
with
3,739 additions
and
7 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright 2023 The JaxGaussianProcesses Contributors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ============================================================================== | ||
from gpjax.decision_making.decision_maker import ( | ||
AbstractDecisionMaker, | ||
UtilityDrivenDecisionMaker, | ||
) | ||
from gpjax.decision_making.posterior_handler import PosteriorHandler | ||
from gpjax.decision_making.search_space import ( | ||
AbstractSearchSpace, | ||
ContinuousSearchSpace, | ||
) | ||
from gpjax.decision_making.test_functions import ( | ||
AbstractContinuousTestFunction, | ||
Forrester, | ||
LogarithmicGoldsteinPrice, | ||
Quadratic, | ||
) | ||
from gpjax.decision_making.utility_functions import ( | ||
AbstractSinglePointUtilityFunctionBuilder, | ||
AbstractUtilityFunctionBuilder, | ||
SinglePointUtilityFunction, | ||
ThompsonSampling, | ||
UtilityFunction, | ||
) | ||
from gpjax.decision_making.utility_maximizer import ( | ||
AbstractSinglePointUtilityMaximizer, | ||
AbstractUtilityMaximizer, | ||
ContinuousSinglePointUtilityMaximizer, | ||
) | ||
from gpjax.decision_making.utils import build_function_evaluator | ||
|
||
__all__ = [ | ||
"AbstractUtilityFunctionBuilder", | ||
"AbstractUtilityMaximizer", | ||
"AbstractDecisionMaker", | ||
"AbstractSearchSpace", | ||
"AbstractSinglePointUtilityFunctionBuilder", | ||
"AbstractSinglePointUtilityMaximizer", | ||
"UtilityFunction", | ||
"build_function_evaluator", | ||
"ContinuousSinglePointUtilityMaximizer", | ||
"ContinuousSearchSpace", | ||
"UtilityDrivenDecisionMaker", | ||
"AbstractContinuousTestFunction", | ||
"Forrester", | ||
"LogarithmicGoldsteinPrice", | ||
"PosteriorHandler", | ||
"Quadratic", | ||
"SinglePointUtilityFunction", | ||
"ThompsonSampling", | ||
] |
Oops, something went wrong.