[docs]classKMeans(ClusteringMethod):""" k-means clustering method which wraps scikit-learn's KMeans. Input arguments for the method are the same as supported by scikit-learn (see `KMeans scikit-learn documentation <https://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html>`_ for details). **YAML specification:** .. indent with spaces .. code-block:: yaml definitions: ml_methods: my_kmeans: KMeans: # arguments as defined by scikit-learn n_clusters: 2 """def__init__(self,name=None,**kwargs):super().__init__(name)self.model=SklearnKmeans(**kwargs)