Style fix
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user