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 2323from botorch .models import SingleTaskGP
2424from botorch .models .approximate_gp import ApproximateGPyTorchModel
2525from botorch .models .fully_bayesian import (
26- FullyBayesianSingleTaskGP ,
26+ AbstractFullyBayesianSingleTaskGP ,
2727 SaasFullyBayesianSingleTaskGP ,
2828)
2929from botorch .models .fully_bayesian_multitask import SaasFullyBayesianMultiTaskGP
@@ -337,7 +337,7 @@ def _fit_fallback_approximate(
337337
338338
339339def fit_fully_bayesian_model_nuts (
340- model : FullyBayesianSingleTaskGP | SaasFullyBayesianMultiTaskGP ,
340+ model : AbstractFullyBayesianSingleTaskGP | SaasFullyBayesianMultiTaskGP ,
341341 max_tree_depth : int = 6 ,
342342 warmup_steps : int = 512 ,
343343 num_samples : int = 256 ,
@@ -349,7 +349,7 @@ def fit_fully_bayesian_model_nuts(
349349
350350
351351 Args:
352- model: SaasFullyBayesianSingleTaskGP to be fitted.
352+ model: Fully Bayesian GP to be fitted.
353353 max_tree_depth: Maximum tree depth for NUTS
354354 warmup_steps: The number of burn-in steps for NUTS.
355355 num_samples: The number of MCMC samples. Note that with thinning,
You can’t perform that action at this time.
0 commit comments