5.9 KiB
Documentation for mlpack
A fast, flexible machine learning library
mlpack is an intuitive, fast, and flexible header-only C++ machine learning library with bindings to other languages. It aims to provide fast, lightweight implementations of both common and cutting-edge machine learning algorithms.
mlpack's lightweight C++ implementation makes it ideal for deployment, and it can also be used for interactive prototyping via C++ notebooks (these can be seen in action on mlpack's homepage).
In addition to its powerful C++ interface, mlpack also provides command-line programs, and bindings to the Python, R, Julia, and Go languages.
If you use mlpack, please cite the software.
mlpack basics
Installing mlpack can be done using the instructions in the README; or the Windows build guide. The following basic guides are highly recommended before using mlpack.
-
First steps:
- mlpack C++ quickstart: create a couple simple C++ programs that use mlpack
- Sample Windows mlpack C++ application: create a working mlpack Windows program using Visual Studio
-
Basics of matrices and data in mlpack:
-
Reference for mlpack core classes:
mlpack algorithm documentation
Documentation for each machine learning algorithm that mlpack implements is detailed in the sections below.
- Classification algorithms: classify points as
discrete labels (
0,1,2, ...). - Regression algorithms: predict continuous values.
- Clustering algorithms: group points into clusters.
- Geometric algorithms: computations based on distance metrics (nearest neighbors, kernel density estimation, etc.).
- Preprocessing utilities: prepare data for machine learning algorithms.
- Transformations: transform data from one space to another (principal components analysis, etc.).
- Modeling utilities: cross-validation, hyperparameter tuning, etc.
Classification algorithms
Classify points as discrete labels (0, 1, 2, ...).
AdaBoost: Adaptive BoostingDecisionTree: ID3-style decision tree classifierLogisticRegression: L2-regularized logistic regression (two-class only)NaiveBayesClassifier: simple multi-class naive Bayes classifierPerceptron: simple Perceptron classifierSoftmaxRegression: L2-regularized softmax regression (i.e. multi-class logistic regression)
Regression algorithms
Predict continuous values.
DecisionTreeRegressor: ID3-style decision tree regressorLARS: Least Angle Regression (LARS), L1-regularized and L2-regularizedLinearRegression: L2-regularized linear regression (ridge regression)
Clustering algorithms
Group points into clusters.
Geometric algorithms
Computations based on distance metrics.
Preprocessing utilities
Prepare data for machine learning algorithms.
Transformations
Transform data from one space to another.
Modeling utilities
Cross-validation, hyperparameter tuning, etc.
Bindings to other languages
mlpack's bindings to other languages have less complete functionality than mlpack in C++, but almost all the same algorithms are available.
| Python | -- | quickstart | -- | reference | | Julia | -- | quickstart | -- | reference | | R | -- | quickstart | -- | reference | Command-line programs | -- | quickstart | -- | reference | | Go | -- | quickstart | -- | reference |
Examples and further documentation
- mlpack examples repository: numerous fully-working example applications of mlpack, in C++ and other languages.
- mlpack models repository: complex models in C++ built with mlpack
For additional documentation beyond what is covered in all the resources above, the source code should be consulted. Each method is fully documented.
Developer documentation
Throughout the codebase, mlpack uses some common template parameter policies. These are documented below.
- The
ElemTypepolicy: element types for data - The
MetricTypepolicy: distance metrics - The
KernelTypepolicy: kernel functions - The
TreeTypepolicy: space trees (ball trees, KD-trees, etc.)
In addition, the following documentation may be useful when developing bindings for other languages:
- Timers: timing parts of bindings
- Writing an mlpack binding: simple examples of mlpack bindings
- Automatic bindings: details on mlpack's automatic binding generator system.