https://github.com/aborg-dev/faml
Faml is FAst Machine Learning library for C++
https://github.com/aborg-dev/faml
Last synced: 4 months ago
JSON representation
Faml is FAst Machine Learning library for C++
- Host: GitHub
- URL: https://github.com/aborg-dev/faml
- Owner: aborg-dev
- Created: 2014-03-06T06:16:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-11T08:44:06.000Z (over 8 years ago)
- Last Synced: 2025-01-25T17:27:15.674Z (6 months ago)
- Language: C++
- Size: 805 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Faml is FAst Machine Learning library for C++ [](https://travis-ci.org/IIoTeP9HuY/faml)
The aim of this library is to implement various machine learning methods in fast out-of-core fashion.
#### Models:
* KNN
* Decision Tree
* Linear regression
* Logistic regression#### Requirements:
* gcc >= 4.8 or clang >= 3.5
* CMake 2.8
* Eigen (http://eigen.tuxfamily.org/)#### Build instructions:
```bash
mkdir build && cd build
cmake ..
make
```