From bc4307d37ecfbef9f4efb3c8387b1327a948a77f Mon Sep 17 00:00:00 2001 From: Rishabh Garg <56191449+RishabhGarg108@users.noreply.github.com> Date: Sat, 27 Mar 2021 22:42:58 +0530 Subject: [PATCH] Undo unwanted changes --- src/mlpack/methods/random_forest/random_forest_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/random_forest/random_forest_impl.hpp b/src/mlpack/methods/random_forest/random_forest_impl.hpp index 106072c8f2..7bd7d2d878 100644 --- a/src/mlpack/methods/random_forest/random_forest_impl.hpp +++ b/src/mlpack/methods/random_forest/random_forest_impl.hpp @@ -269,7 +269,7 @@ double RandomForest< DimensionSelectionType dimensionSelector) { // Pass off to Train(). - return Train(dataset, datasetInfo, labels, numClasses, weights, + return Train(dataset, datasetInfo, labels, numClasses, weights, numTrees, minimumLeafSize, minimumGainSplit, maximumDepth, dimensionSelector, warmStart); }