We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a056a commit 17e9dbeCopy full SHA for 17e9dbe
botorch/fit.py
@@ -23,6 +23,7 @@
23
from botorch.models import SingleTaskGP
24
from botorch.models.approximate_gp import ApproximateGPyTorchModel
25
from botorch.models.fully_bayesian import (
26
+ FullyBayesianLinearSingleTaskGP,
27
FullyBayesianSingleTaskGP,
28
SaasFullyBayesianSingleTaskGP,
29
)
@@ -337,7 +338,9 @@ def _fit_fallback_approximate(
337
338
339
340
def fit_fully_bayesian_model_nuts(
- model: FullyBayesianSingleTaskGP | SaasFullyBayesianMultiTaskGP,
341
+ model: FullyBayesianLinearSingleTaskGP
342
+ | FullyBayesianSingleTaskGP
343
+ | SaasFullyBayesianMultiTaskGP,
344
max_tree_depth: int = 6,
345
warmup_steps: int = 512,
346
num_samples: int = 256,
0 commit comments