BayesianLinearSurrogate¶
- class baybe.surrogates.linear.BayesianLinearSurrogate[source]¶
Bases:
IndependentGaussianSurrogate
A Bayesian linear regression surrogate model.
Public methods
__init__
([model_params])Method generated by attrs for class BayesianLinearSurrogate.
fit
(searchspace, objective, measurements)Train the surrogate model on the provided data.
from_dict
(dictionary)Create an object from its dictionary representation.
from_json
(string)Create an object from its JSON representation.
posterior
(candidates)Compute the posterior for candidates in experimental representation.
posterior_stats
(candidates[, stats])Return posterior statistics for each target.
Make the surrogate handle multiple targets via replication.
Create the botorch-ready representation of the fitted model.
to_dict
()Create an object's dictionary representation.
to_json
()Create an object's JSON representation.
Public attributes and properties
Optional model parameter that will be passed to the surrogate constructor.
Class variable encoding whether or not the surrogate is multi-output compatible.
Class variable encoding whether or not the surrogate supports transfer learning.
- __init__(model_params=NOTHING)¶
Method generated by attrs for class BayesianLinearSurrogate.
For details on the parameters, see Public attributes and properties.
- fit(searchspace: SearchSpace, objective: Objective, measurements: DataFrame)¶
Train the surrogate model on the provided data.
- Parameters:
searchspace (
SearchSpace
) – The search space in which experiments are conducted.objective (
Objective
) – The objective to be optimized.measurements (
DataFrame
) – The training data in experimental representation.
- Raises:
ValueError – If the search space contains task parameters but the selected surrogate model type does not support transfer learning.
NotImplementedError – When using a continuous search space and a non-GP model.
- Return type:
- posterior(candidates: DataFrame)¶
Compute the posterior for candidates in experimental representation.
Takes a dataframe of parameter configurations in experimental representation and returns the corresponding posterior object. Therefore, the method serves as the user-facing entry point for accessing model predictions.
- Parameters:
candidates (
DataFrame
) – A dataframe containing parameter configurations in experimental representation.- Raises:
ModelNotTrainedError – When called before the model has been trained.
- Return type:
- Returns:
A
botorch.posteriors.Posterior
object representing the posterior distribution at the given candidate points, where the posterior is also described in experimental representation. That is, the posterior values lie in the same domain as the modelled targets/objective on which the surrogate was trained viabaybe.surrogates.base.Surrogate.fit()
.
- posterior_stats(candidates: DataFrame, stats: Sequence[float | Literal['mean', 'std', 'var', 'mode']] = ('mean', 'std'))¶
Return posterior statistics for each target.
- Parameters:
candidates (
DataFrame
) – The candidate points in experimental representation. For details, seebaybe.surrogates.base.Surrogate.posterior()
.stats (
Sequence
[Union
[float
,Literal
['mean'
,'std'
,'var'
,'mode'
]]]) – Sequence indicating which statistics to compute. Also accepts floats, for which the corresponding quantile point will be computed.
- Raises:
ModelNotTrainedError – When called before the model has been trained.
ValueError – If a requested quantile is outside the open interval (0,1).
TypeError – If the posterior utilized by the surrogate does not support a requested statistic.
- Return type:
- Returns:
A dataframe with posterior statistics for each target and candidate.
- replicate()¶
Make the surrogate handle multiple targets via replication.
If the surrogate only supports single targets, this method turns it into a multi-target surrogate by replicating the model architecture for each observed target. The resulting copies are trained independently, but share the same architecture.
If the surrogate is itself already multi-target compatible, this operation effectively disables the model’s inherent multi-target mechanism by treating it as a single-target surrogate and applying the same replication mechanism.
- Return type:
- to_botorch()¶
Create the botorch-ready representation of the fitted model.
The
botorch.models.model.Model
created by this method needs to be configured such that it can be called with candidate points in computational representation, that is, input of the form as obtained viabaybe.searchspace.core.SearchSpace.transform()
.- Return type:
- to_json()¶
Create an object’s JSON representation.
- Return type:
- Returns:
The JSON representation as a string.
- model_params: dict[str, Any]¶
Optional model parameter that will be passed to the surrogate constructor.
- supports_multi_output: ClassVar[bool] = False¶
Class variable encoding whether or not the surrogate is multi-output compatible.
- supports_transfer_learning: ClassVar[bool] = False¶
Class variable encoding whether or not the surrogate supports transfer learning.