Style fix

This commit is contained in:
himanshupathak21061998
2020-01-30 20:42:15 +05:30
parent 6d57e8e3a1
commit fbc6f278c7
2 changed files with 4 additions and 2 deletions
@@ -115,7 +115,8 @@ class DecisionStump
* @param predictedLabels Vector to store the predicted classes after
* classifying test data.
*/
mlpack_deprecated void Classify(const MatType& test, arma::Row<size_t>& predictedLabels);
mlpack_deprecated void Classify(const MatType& test,
arma::Row<size_t>& predictedLabels);
//! Access the splitting dimension.
size_t SplitDimension() const { return splitDimension; }
@@ -590,7 +590,8 @@ using DecisionStump = DecisionTree<FitnessFunction,
false>;
/**
* Convenience typedef for decision tree (Three level decision trees).
* Convenience typedef for ID3decision stumps (single level decision trees
* made with ID3 algorithm).
*/
typedef DecisionTree<InformationGain,
BestBinaryNumericSplit,