PlusML
|
PlusML is a C++ library that aims to provide implementations of common machine learning algorithms with clean API.
The PlusML library can be installed via git submodule
.
Navigate to the project's directory and run
then initialize and update submodules
Now you can compose your main CMakeLists.txt
to add PlusML to your project.
Example for Windows systems:
After configuring CMake you can build your project via CMake CLI or your favourite IDE tools.
Manual building may look like this:
Where .
is your project's directory.
After installing the library you can use provided algorithms by including corresponding headers.
API information is provided in docs.
Basic example:
Returns
since we have two features, bias is enabled by default and parameters are initialized with zeros.
PlusML provides auto-generated docs via Doxygen.
Feel free to explore it:
Tests for all implemented algorithms are placed at the test/
directory along with testcase generators.
CMake configuration for tests is also provided, just uncomment the corresponding section in CMakeLists.txt
according to the hints.
PlusML depends on Eigen linear algebra library which is installed as a git submodule
and does not require any dependencies other than the C++ standard library.
We also use GoogleTest for testing purposes but PlusML does not require it to run.
PlusML is licensed under the MIT License.