From 2d57b1968b8c6a8192c0f3aba7c4510940557271 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 21 Nov 2022 10:25:52 -0500 Subject: [PATCH] Fix typo for classification of classification algorithm. --- src/mlpack/methods/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/CMakeLists.txt b/src/mlpack/methods/CMakeLists.txt index 6983de2cac..47a7960126 100644 --- a/src/mlpack/methods/CMakeLists.txt +++ b/src/mlpack/methods/CMakeLists.txt @@ -15,7 +15,7 @@ add_all_bindings(bayesian_linear_regression bayesian_linear_regression "regression") add_all_bindings(cf cf "misc. / other") add_all_bindings(dbscan dbscan "clustering") -add_all_bindings(decision_tree decision_tree "clustering") +add_all_bindings(decision_tree decision_tree "classification") add_all_bindings(det det "misc. / other") add_all_bindings(emst emst "geometry") add_all_bindings(fastmks fastmks "geometry")