Cpp ML Library  1.0.0
A library of Machine Learning Algorithmns seen from the Udemy course Machine Learning A to Z.
ml.hpp
Go to the documentation of this file.
1 // ml.h - Master header file
2 #ifndef ML_H
3 #define ML_H
4 
11 #include "./neural_network/ANN.hpp"
12 #include "./neural_network/CNN.hpp"
13 #include "./clustering/KMeans.hpp"
15 #include "./association/Eclat.hpp"
16 
22 #endif // ML_H
Implementation of the Apriori algorithm for frequent itemset mining.
A simple implementation of Decision Tree Classification.
A simple implementation of Decision Tree Regression.
Optimized Implementation of the Eclat algorithm for frequent itemset mining.
An implementation of the K-Means clustering algorithm with K-Means++ initialization.
A simple implementation of Multilinear Regression with improvements.
Improved implementation of Polynomial Regression.
A simple implementation of Random Forest Classification.
A simple implementation of Random Forest Regression.