From ec29a6dc2b416d46d3a4e09ccd25b3f74ff66695 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 7 Nov 2023 17:33:51 -0500 Subject: [PATCH] Oops, remove redundant bullet point. --- doc/user/methods/decision_tree.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/user/methods/decision_tree.md b/doc/user/methods/decision_tree.md index 95c572004a..085657aeaa 100644 --- a/doc/user/methods/decision_tree.md +++ b/doc/user/methods/decision_tree.md @@ -113,9 +113,6 @@ of the versions of the `Train()` member function. For an instance of * `tree.Train(data, labels, numClasses, minLeafSize=10, minGainSplit=1e-7, maxDepth=0)` * `tree.Train(data, labels, numClasses, weights, minLeafSize=10, minGainSplit=1e-7, maxDepth=0)` - Train on numerical-only data (optionally with instance weights). - - Returns a `double` with the final gain of the tree (the Gini gain, unless a - different [`FitnessFunction` template parameter](#fully-custom-behavior) is - specified. ---