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