Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 543 Bytes

README.md

File metadata and controls

32 lines (27 loc) · 543 Bytes

mlalgorithm

This project implements different machine learning algorithms in C++. Some idea of the algorithm is from the book Machine Learning in Action.

how to build

On Linux

$ mkdir build
$ cd build
$ cmake ..
$ make

On other platforms like Windows, it will generate a Visual Studio project through cmake

how to run

$ ./bin/mlalgorithm

[0] naivebayes
[1] apriori
[2] fpgrowth
[3] knn
[4] decisiontree
[5] cart
[6] svm
[7] kmeans
[8] logisticregression
[9] adaboost
please select the machine learning algorithm