From 0e0afe101986d80127b14a35647d4b081a119905 Mon Sep 17 00:00:00 2001 From: Sait Cakmak Date: Fri, 13 Sep 2024 20:24:37 +0200 Subject: [PATCH] fix missing import --- botorch/models/approximate_gp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/botorch/models/approximate_gp.py b/botorch/models/approximate_gp.py index f1380b5e2a..64e19ed79b 100644 --- a/botorch/models/approximate_gp.py +++ b/botorch/models/approximate_gp.py @@ -34,6 +34,7 @@ from typing import Optional, TypeVar, Union import torch +from botorch.acquisition.objective import PosteriorTransform from botorch.models.gpytorch import GPyTorchModel from botorch.models.transforms.input import InputTransform from botorch.models.transforms.outcome import OutcomeTransform