Multi objective model
smac.model.multi_objective_model
#
MultiObjectiveModel
#
MultiObjectiveModel(
models: AbstractModel | list[AbstractModel],
objectives: list[str],
seed: int = 0,
)
Bases: AbstractModel
Wrapper for the surrogate model to predict multiple objectives.
| PARAMETER | DESCRIPTION |
|---|---|
models
|
Which model should be used. If it is a list, then it must provide as many models as objectives. If it is a single model only, the model is used for all objectives.
TYPE:
|
objectives
|
Which objectives should be used. |
seed
|
TYPE:
|
Source code in smac/model/multi_objective_model.py
predict
#
Predicts mean and variance for a given X. Internally, calls the method _predict.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Input data points.
TYPE:
|
covariance_type
|
Specifies what to return along with the mean. Applied only to Gaussian Processes. Takes four valid inputs: * None: Only the mean is returned. * "std": Standard deviation at test points is returned. * "diagonal": Diagonal of the covariance matrix is returned. * "full": Whole covariance matrix between the test points is returned.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
means
|
The predictive mean.
TYPE:
|
vars
|
Predictive variance or standard deviation.
TYPE:
|
Source code in smac/model/abstract_model.py
train
#
Trains the random forest on X and Y. Internally, calls the method _train.
| PARAMETER | DESCRIPTION |
|---|---|
X
|
Input data points.
TYPE:
|
Y
|
The corresponding target values.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
self
|
TYPE:
|