Unnecessary end of line whitespace is generally frowned upon. In addition some editors remove end of line whitespace automatically, making diffs hard to read. This commit removes all trailing witespaces. Using some sed magic in bash: find . -name "*.*" -type f -print0 | xargs gsed -i 's/[ \t]*$//'
Tutorials
Tutorials for mlpack can be found here : mlpack tutorials.
Method-specific tutorials
- NeighborSearch tutorial (mlpack_knn / mlpack_kfn)
- RangeSearch tutorial (mlpack_range_search)
- LinearRegression tutorial (mlpack_linear_regression)
- Density Estimation Trees tutorial (mlpack_det)
- Euclidean Minimum Spanning Trees tutorial (mlpack_emst)
- K-Means tutorial (mlpack_kmeans)
- FastMKS tutorial (mlpack_fastmks)