From a2efe44dff3f2c320373665d3bb2dc2d67f531cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20P=2E=20D=C3=BCrholt?= Date: Wed, 21 May 2025 08:01:00 +0200 Subject: [PATCH] add model to __all__ --- botorch/models/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/botorch/models/__init__.py b/botorch/models/__init__.py index 06bd17b5b1..a5e6dd44b8 100644 --- a/botorch/models/__init__.py +++ b/botorch/models/__init__.py @@ -27,6 +27,9 @@ from botorch.models.model_list_gp_regression import ModelListGP from botorch.models.multitask import KroneckerMultiTaskGP, MultiTaskGP from botorch.models.pairwise_gp import PairwiseGP, PairwiseLaplaceMarginalLogLikelihood +from botorch.models.robust_relevance_pursuit_model import ( + RobustRelevancePursuitSingleTaskGP, +) __all__ = [ "add_saas_prior", @@ -49,4 +52,5 @@ "SingleTaskGP", "SingleTaskMultiFidelityGP", "SingleTaskVariationalGP", + "RobustRelevancePursuitSingleTaskGP", ]