[docs]classDBSCAN(ClusteringMethod):""" DBSCAN 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.DBSCAN.html>`_ for details). **YAML specification:** .. indent with spaces .. code-block:: yaml definitions: ml_methods: my_dbscan: DBSCAN: # arguments as defined by scikit-learn eps: 0.5 min_samples: 5 """def__init__(self,name=None,**kwargs):super().__init__(name)self.model=SklearnDBSCAN(**kwargs)