|
23 | 23 | LogNoisyExpectedImprovement, |
24 | 24 | NoisyExpectedImprovement, |
25 | 25 | ) |
26 | | -from botorch.acquisition.bayesian_active_learning import ( |
27 | | - qBayesianActiveLearningByDisagreement, |
28 | | - qBayesianQueryByComittee, |
29 | | - qStatisticalDistanceActiveLearning |
30 | | -) |
31 | | -from botorch.acquisition.diversity import ( |
32 | | - qDistanceWeightedImprovementOverThreshold, |
33 | | -) |
| 26 | + |
34 | 27 | from botorch.acquisition.knowledge_gradient import ( |
35 | 28 | qKnowledgeGradient, |
36 | 29 | qMultiFidelityKnowledgeGradient, |
|
47 | 40 | qExpectedImprovement, |
48 | 41 | qNoisyExpectedImprovement, |
49 | 42 | ) |
| 43 | +from botorch.acquisition.diversity import qDistanceWeightedImprovementOverThreshold |
50 | 44 | from botorch.acquisition.multi_objective.logei import ( |
51 | 45 | qLogExpectedHypervolumeImprovement, |
52 | 46 | qLogNoisyExpectedHypervolumeImprovement, |
|
55 | 49 | qExpectedHypervolumeImprovement, |
56 | 50 | qNoisyExpectedHypervolumeImprovement, |
57 | 51 | ) |
58 | | -<<<<<<< Updated upstream |
59 | 52 | from botorch.acquisition.multi_objective.parego import qLogNParEGO |
60 | 53 | from botorch.acquisition.preference import AnalyticExpectedUtilityOfBestOption |
61 | | -======= |
62 | | -from botorch.acquisition.joint_entropy_search import qJointEntropySearch |
63 | | -from botorch.acquisition.scorebo import qSelfCorrectingBayesianOptimization |
64 | | -from botorch.acquisition.active_learning import qNegIntegratedPosteriorVariance |
65 | | ->>>>>>> Stashed changes |
66 | 54 | from botorch.models import SaasFullyBayesianSingleTaskGP |
| 55 | +from botorch.acquisition.active_learning import qNegIntegratedPosteriorVariance |
67 | 56 | from botorch.models.contextual import LCEAGP |
68 | 57 | from botorch.models.fully_bayesian import FullyBayesianLinearSingleTaskGP |
69 | 58 | from botorch.models.fully_bayesian_multitask import SaasFullyBayesianMultiTaskGP |
|
158 | 147 | qNegIntegratedPosteriorVariance: "qNegIntegratedPosteriorVariance", |
159 | 148 | qLogExpectedHypervolumeImprovement: "qLogExpectedHypervolumeImprovement", |
160 | 149 | qLogNoisyExpectedHypervolumeImprovement: "qLogNoisyExpectedHypervolumeImprovement", |
161 | | -<<<<<<< Updated upstream |
162 | 150 | qLogNParEGO: "qLogNParEGO", |
163 | | -======= |
164 | | - # info-theoretic acquisition functions |
165 | 151 | qDistanceWeightedImprovementOverThreshold: "qDistanceWeightedImprovementOverThreshold", |
166 | | - qJointEntropySearch: "qJointEntropySearch", |
167 | | - qSelfCorrectingBayesianOptimization: "qSelfCorrectingBayesianOptimization", |
168 | | - qBayesianActiveLearningByDisagreement: "qBayesianActiveLearningByDisagreement", |
169 | | - qBayesianQueryByComittee: "qBayesianQueryByComittee", |
170 | | - qStatisticalDistanceActiveLearning: "qStatisticalDistanceActiveLearning", |
171 | | ->>>>>>> Stashed changes |
172 | 152 | } |
173 | 153 |
|
174 | 154 |
|
|
195 | 175 | Interval: "Interval", |
196 | 176 | GammaPrior: "GammaPrior", |
197 | 177 | LogNormalPrior: "LogNormalPrior", |
198 | | -<<<<<<< Updated upstream |
199 | 178 | SobolQMCNormalSampler: "SobolQMCNormalSampler", |
200 | | -======= |
201 | | ->>>>>>> Stashed changes |
202 | 179 | } |
203 | 180 |
|
204 | 181 | """ |
|
0 commit comments