Note
Go to the end to download the full example code
API¶
Here are some examples of the machine learning API applied to clustering models.
Import¶
from __future__ import annotations
from gemseo import configure_logger
from gemseo import create_benchmark_dataset
from gemseo.mlearning import create_clustering_model
from gemseo.mlearning import get_clustering_models
from gemseo.mlearning import get_clustering_options
configure_logger()
<RootLogger root (INFO)>
Get available clustering models¶
get_clustering_models()
['GaussianMixture', 'KMeans']
Get clustering model options¶
get_clustering_options("GaussianMixture")
+---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
| Name | Description | Type |
+---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
| n_components | The number of components of the gaussian mixture. | integer |
| random_state | The random state passed to the random number generator. use an integer for reproducible | integer |
| | results. | |
| 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. | |
| var_names | The names of the variables. if ``none``, consider all variables mentioned in the learning | null |
| | dataset. | |
+---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
INFO - 09:01:15: +---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
INFO - 09:01:15: | Name | Description | Type |
INFO - 09:01:15: +---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
INFO - 09:01:15: | n_components | The number of components of the gaussian mixture. | integer |
INFO - 09:01:15: | random_state | The random state passed to the random number generator. use an integer for reproducible | integer |
INFO - 09:01:15: | | results. | |
INFO - 09:01:15: | transformer | The strategies to transform the variables. the values are instances of | object |
INFO - 09:01:15: | | :class:`.transformer` while the keys are the names of either the variables or the groups | |
INFO - 09:01:15: | | of variables, e.g. ``"inputs"`` or ``"outputs"`` in the case of the regression algorithms. | |
INFO - 09:01:15: | | if a group is specified, the :class:`.transformer` will be applied to all the variables of | |
INFO - 09:01:15: | | this group. if :attr:`.identity`, do not transform the variables. | |
INFO - 09:01:15: | var_names | The names of the variables. if ``none``, consider all variables mentioned in the learning | null |
INFO - 09:01:15: | | dataset. | |
INFO - 09:01:15: +---------------------------+--------------------------------------------------------------------------------------------+---------------------------+
{'$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'}, 'var_names': {'description': 'The names of the variables. If ``None``, consider all variables mentioned in the learning dataset.', 'type': 'null'}, 'n_components': {'description': 'The number of components of the Gaussian mixture.', 'type': 'integer'}, 'random_state': {'description': 'The random state passed to the random number generator. Use an integer for reproducible results.', 'type': 'integer'}}}
Create clustering model¶
iris = create_benchmark_dataset("IrisDataset")
model = create_clustering_model("KMeans", data=iris, n_clusters=3)
model.learn()
model
Total running time of the script: (0 minutes 0.142 seconds)