From aae3eb93b4ed26fed077f3ab145f3835d3bb558d Mon Sep 17 00:00:00 2001 From: Roman Werpachowski Date: Sun, 12 Sep 2021 19:51:31 +0200 Subject: [PATCH] Update docstring. --- cppyml/clustering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppyml/clustering.cpp b/cppyml/clustering.cpp index 78bdfb2..30dd38c 100644 --- a/cppyml/clustering.cpp +++ b/cppyml/clustering.cpp @@ -165,7 +165,7 @@ void init_clustering(py::module& m) data: A 2D array with data points in rows. Returns: - True if EM algorithm converged. + True if the algorithm converged. )" ) .def_property_readonly("number_clusters", &ml::Clustering::KMeansPy::number_clusters, "Number of clusters.")