factory module¶
A factory to create clustering models.
This module contains a factory to instantiate a MLClusteringAlgo
from its class
name. It also provides a list of available clustering models and allows testing if a
clustering model type is available.
- class gemseo.mlearning.cluster.factory.ClusteringModelFactory[source]¶
Bases:
MLAlgoFactory
This factory instantiates a
MLClusteringAlgo
from its class name.The class can be either internal or external. In this second case, it can be either implemented in a module referenced in the “GEMSEO_PATH” or in a module The class can be either internal or external. In the second case, it can be either implemented in a module referenced in the GEMSEO_PATH environment variable or in a module starting with “gemseo_” and referenced in the PYTHONPATH environment variable.
- create(ml_algo, **options)¶
Create an instance of a machine learning algorithm.
- is_available(ml_algo)¶
Check the availability of a machine learning algorithm.
- load(directory)¶
Load an instance of machine learning algorithm from the disk.