File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
from botorch .models import SingleTaskGP
24
24
from botorch .models .approximate_gp import ApproximateGPyTorchModel
25
25
from botorch .models .fully_bayesian import (
26
- FullyBayesianSingleTaskGP ,
26
+ AbstractFullyBayesianSingleTaskGP ,
27
27
SaasFullyBayesianSingleTaskGP ,
28
28
)
29
29
from botorch .models .fully_bayesian_multitask import SaasFullyBayesianMultiTaskGP
@@ -337,7 +337,7 @@ def _fit_fallback_approximate(
337
337
338
338
339
339
def fit_fully_bayesian_model_nuts (
340
- model : FullyBayesianSingleTaskGP | SaasFullyBayesianMultiTaskGP ,
340
+ model : AbstractFullyBayesianSingleTaskGP | SaasFullyBayesianMultiTaskGP ,
341
341
max_tree_depth : int = 6 ,
342
342
warmup_steps : int = 512 ,
343
343
num_samples : int = 256 ,
@@ -349,7 +349,7 @@ def fit_fully_bayesian_model_nuts(
349
349
350
350
351
351
Args:
352
- model: SaasFullyBayesianSingleTaskGP to be fitted.
352
+ model: Fully Bayesian GP to be fitted.
353
353
max_tree_depth: Maximum tree depth for NUTS
354
354
warmup_steps: The number of burn-in steps for NUTS.
355
355
num_samples: The number of MCMC samples. Note that with thinning,
You can’t perform that action at this time.
0 commit comments