fixing typo in trees.md

This commit is contained in:
Adarsh Santoria
2023-02-01 17:02:45 +05:30
committed by GitHub
parent a9616cef31
commit 54ec3046c4
+2 -2
View File
@@ -86,7 +86,7 @@ restatement of the fourth part of the definition).
Most everything in mlpack is decomposed into a series of configurable template
parameters, and trees are no exception. In order to ease usage of high-level
mlpack algorithms, each \c TreeType itself must be a template class taking three
mlpack algorithms, each TreeType itself must be a template class taking three
parameters:
- `MetricType` -- the underlying metric that the tree will be built on (see
@@ -424,7 +424,7 @@ This constructor should be called with `(*this)` after the node is constructed
The last template parameter is the `MatType` parameter. This is generally
`arma::mat` or `arma::sp_mat`, but could be any Armadillo type, including
matrices that hold data points of different precisions (such as `float` or even
`int`). It generally suffices to write \c MatType assuming that `arma::mat`
`int`). It generally suffices to write MatType assuming that `arma::mat`
will be used, since the vast majority of the time this will be what is used.
### Constructors and destructors