Note
Click here to download the full example code
API¶
Here are some examples of the machine learning API applied to regression models.
from __future__ import annotations
from gemseo.api import configure_logger
from gemseo.api import create_design_space
from gemseo.api import create_discipline
from gemseo.api import create_scenario
from gemseo.mlearning.api import create_regression_model
from gemseo.mlearning.api import get_regression_models
from gemseo.mlearning.api import get_regression_options
configure_logger()
<RootLogger root (INFO)>
Get available regression models¶
print(get_regression_models())
['GaussianProcessRegressor', 'LinearRegressor', 'MOERegressor', 'PCERegressor', 'PolynomialRegressor', 'RBFRegressor', 'RandomForestRegressor']
Get regression model options¶
print(get_regression_options("GaussianProcessRegressor"))
+---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
| Name | Description | Type |
+---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
| alpha | The nugget effect to regularize the model. | number |
| bounds | The lower and upper bounds of the parameter length scales when ``kernel`` is ``none``. | null |
| | either a unique lower-upper pair common to all the inputs or lower-upper pairs for some of | |
| | them. when ``bounds`` is ``none`` or when an input has no pair, the lower bound is 0.01 | |
| | and the upper bound is 100. | |
| input_names | The names of the input variables. if ``none``, consider all the input variables of the | null |
| | learning dataset. | |
| kernel | The kernel specifying the covariance model. if ``none``, use a matérn(2.5). | null |
| n_restarts_optimizer | The number of restarts of the optimizer. | integer |
| optimizer | The optimization algorithm to find the parameter length scales. | string |
| output_names | The names of the output variables. if ``none``, consider all the output variables of the | null |
| | learning dataset. | |
| random_state | The seed used to initialize the centers. if none, the random number generator is the | null |
| | randomstate instance used by `numpy.random`. | |
| transformer | The strategies to transform the variables. the values are instances of | object |
| | :class:`.transformer` while the keys are the names of either the variables or the groups | |
| | of variables, e.g. ``"inputs"`` or ``"outputs"`` in the case of the regression algorithms. | |
| | if a group is specified, the :class:`.transformer` will be applied to all the variables of | |
| | this group. if :attr:`.identity`, do not transform the variables. | |
+---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
INFO - 17:25:45: +---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
INFO - 17:25:45: | Name | Description | Type |
INFO - 17:25:45: +---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
INFO - 17:25:45: | alpha | The nugget effect to regularize the model. | number |
INFO - 17:25:45: | bounds | The lower and upper bounds of the parameter length scales when ``kernel`` is ``none``. | null |
INFO - 17:25:45: | | either a unique lower-upper pair common to all the inputs or lower-upper pairs for some of | |
INFO - 17:25:45: | | them. when ``bounds`` is ``none`` or when an input has no pair, the lower bound is 0.01 | |
INFO - 17:25:45: | | and the upper bound is 100. | |
INFO - 17:25:45: | input_names | The names of the input variables. if ``none``, consider all the input variables of the | null |
INFO - 17:25:45: | | learning dataset. | |
INFO - 17:25:45: | kernel | The kernel specifying the covariance model. if ``none``, use a matérn(2.5). | null |
INFO - 17:25:45: | n_restarts_optimizer | The number of restarts of the optimizer. | integer |
INFO - 17:25:45: | optimizer | The optimization algorithm to find the parameter length scales. | string |
INFO - 17:25:45: | output_names | The names of the output variables. if ``none``, consider all the output variables of the | null |
INFO - 17:25:45: | | learning dataset. | |
INFO - 17:25:45: | random_state | The seed used to initialize the centers. if none, the random number generator is the | null |
INFO - 17:25:45: | | randomstate instance used by `numpy.random`. | |
INFO - 17:25:45: | transformer | The strategies to transform the variables. the values are instances of | object |
INFO - 17:25:45: | | :class:`.transformer` while the keys are the names of either the variables or the groups | |
INFO - 17:25:45: | | of variables, e.g. ``"inputs"`` or ``"outputs"`` in the case of the regression algorithms. | |
INFO - 17:25:45: | | if a group is specified, the :class:`.transformer` will be applied to all the variables of | |
INFO - 17:25:45: | | this group. if :attr:`.identity`, do not transform the variables. | |
INFO - 17:25:45: +---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
{'$schema': 'http://json-schema.org/schema#', 'type': 'object', 'properties': {'transformer': {'description': 'The strategies to transform the variables. The values are instances of :class:`.Transformer` while the keys are the names of either the variables or the groups of variables, e.g. ``"inputs"`` or ``"outputs"`` in the case of the regression algorithms. If a group is specified, the :class:`.Transformer` will be applied to all the variables of this group. If :attr:`.IDENTITY`, do not transform the variables.', 'type': 'object'}, 'input_names': {'description': 'The names of the input variables. If ``None``, consider all the input variables of the learning dataset.', 'type': 'null'}, 'output_names': {'description': 'The names of the output variables. If ``None``, consider all the output variables of the learning dataset.', 'type': 'null'}, 'kernel': {'description': 'The kernel specifying the covariance model. If ``None``, use a Matérn(2.5).', 'type': 'null'}, 'bounds': {'description': 'The lower and upper bounds of the parameter length scales when ``kernel`` is ``None``. Either a unique lower-upper pair common to all the inputs or lower-upper pairs for some of them. When ``bounds`` is ``None`` or when an input has no pair, the lower bound is 0.01 and the upper bound is 100.', 'type': 'null'}, 'alpha': {'description': 'The nugget effect to regularize the model.', 'type': 'number'}, 'optimizer': {'description': 'The optimization algorithm to find the parameter length scales.', 'type': 'string'}, 'n_restarts_optimizer': {'description': 'The number of restarts of the optimizer.', 'type': 'integer'}, 'random_state': {'description': 'The seed used to initialize the centers. If None, the random number generator is the RandomState instance used by `numpy.random`.', 'type': 'null'}}, 'required': ['alpha', 'n_restarts_optimizer', 'optimizer', 'transformer']}
Create regression model¶
expressions = {"y_1": "1+2*x_1+3*x_2", "y_2": "-1-2*x_1-3*x_2"}
discipline = create_discipline(
"AnalyticDiscipline", name="func", expressions=expressions
)
design_space = create_design_space()
design_space.add_variable("x_1", l_b=0.0, u_b=1.0)
design_space.add_variable("x_2", l_b=0.0, u_b=1.0)
scenario = create_scenario(
[discipline], "DisciplinaryOpt", "y_1", design_space, scenario_type="DOE"
)
scenario.execute({"algo": "fullfact", "n_samples": 9})
dataset = scenario.export_to_dataset(opt_naming=False)
model = create_regression_model("LinearRegressor", data=dataset)
model.learn()
print(model)
INFO - 17:25:45:
INFO - 17:25:45: *** Start DOEScenario execution ***
INFO - 17:25:45: DOEScenario
INFO - 17:25:45: Disciplines: func
INFO - 17:25:45: MDO formulation: DisciplinaryOpt
INFO - 17:25:45: Optimization problem:
INFO - 17:25:45: minimize y_1(x_1, x_2)
INFO - 17:25:45: with respect to x_1, x_2
INFO - 17:25:45: over the design space:
INFO - 17:25:45: +------+-------------+-------+-------------+-------+
INFO - 17:25:45: | name | lower_bound | value | upper_bound | type |
INFO - 17:25:45: +------+-------------+-------+-------------+-------+
INFO - 17:25:45: | x_1 | 0 | None | 1 | float |
INFO - 17:25:45: | x_2 | 0 | None | 1 | float |
INFO - 17:25:45: +------+-------------+-------+-------------+-------+
INFO - 17:25:45: Solving optimization problem with algorithm fullfact:
INFO - 17:25:45: ... 0%| | 0/9 [00:00<?, ?it]
INFO - 17:25:45: ... 11%|█ | 1/9 [00:00<00:00, 200.99 it/sec, obj=1]
INFO - 17:25:45: ... 22%|██▏ | 2/9 [00:00<00:00, 327.76 it/sec, obj=2]
INFO - 17:25:45: ... 33%|███▎ | 3/9 [00:00<00:00, 422.25 it/sec, obj=3]
INFO - 17:25:45: ... 44%|████▍ | 4/9 [00:00<00:00, 494.38 it/sec, obj=2.5]
INFO - 17:25:45: ... 56%|█████▌ | 5/9 [00:00<00:00, 551.01 it/sec, obj=3.5]
INFO - 17:25:45: ... 67%|██████▋ | 6/9 [00:00<00:00, 591.65 it/sec, obj=4.5]
INFO - 17:25:45: ... 78%|███████▊ | 7/9 [00:00<00:00, 628.71 it/sec, obj=4]
INFO - 17:25:45: ... 89%|████████▉ | 8/9 [00:00<00:00, 660.52 it/sec, obj=5]
INFO - 17:25:45: ... 100%|██████████| 9/9 [00:00<00:00, 687.59 it/sec, obj=6]
INFO - 17:25:45: Optimization result:
INFO - 17:25:45: Optimizer info:
INFO - 17:25:45: Status: None
INFO - 17:25:45: Message: None
INFO - 17:25:45: Number of calls to the objective function by the optimizer: 9
INFO - 17:25:45: Solution:
INFO - 17:25:45: Objective: 1.0
INFO - 17:25:45: Design space:
INFO - 17:25:45: +------+-------------+-------+-------------+-------+
INFO - 17:25:45: | name | lower_bound | value | upper_bound | type |
INFO - 17:25:45: +------+-------------+-------+-------------+-------+
INFO - 17:25:45: | x_1 | 0 | 0 | 1 | float |
INFO - 17:25:45: | x_2 | 0 | 0 | 1 | float |
INFO - 17:25:45: +------+-------------+-------+-------------+-------+
INFO - 17:25:45: *** End DOEScenario execution (time: 0:00:00.028958) ***
/home/docs/checkouts/readthedocs.org/user_builds/gemseo/envs/4.2.0/lib/python3.9/site-packages/gemseo/mlearning/transform/scaler/min_max_scaler.py:73: RuntimeWarning: divide by zero encountered in divide
self.coefficient = where(is_constant, nan_to_num(1 / l_b), 1 / delta)
LinearRegressor(fit_intercept=True, l2_penalty_ratio=1.0, penalty_level=0.0)
based on the scikit-learn library
built from 9 learning samples
Total running time of the script: ( 0 minutes 0.081 seconds)