Cpp ML Library  1.0.0
A library of Machine Learning Algorithmns seen from the Udemy course Machine Learning A to Z.
File List
Here is a list of all documented files with brief descriptions:
[detail level 1234]
  ml_library_include
  ml
  association
 Apriori.hppImplementation of the Apriori algorithm for frequent itemset mining
 Eclat.hppOptimized Implementation of the Eclat algorithm for frequent itemset mining
  clustering
 HierarchicalClustering.hppImplementation of Agglomerative Hierarchical Clustering
 KMeans.hppAn implementation of the K-Means clustering algorithm with K-Means++ initialization
 KNNClassifier.hppImplementation of the K-Nearest Neighbors Classifier
 KNNRegressor.hppImplementation of the K-Nearest Neighbors Regressor
  neural_network
 ANN.hpp
 CNN.hpp
 NeuralNetwork.hppA simple neural network implementation in C++
  regression
 LogisticRegression.hppA simple implementation of Logistic Regression with improvements
 MultiLinearRegression.hppA simple implementation of Multilinear Regression with improvements
 PolynomialRegression.hppImproved implementation of Polynomial Regression
 SupportVectorRegression.hppImplementation of Support Vector Regression (SVR) using SMO algorithm
  tree
 DecisionTreeClassifier.hppA simple implementation of Decision Tree Classification
 DecisionTreeRegressor.hppA simple implementation of Decision Tree Regression
 RandomForestClassifier.hppA simple implementation of Random Forest Classification
 RandomForestRegressor.hppA simple implementation of Random Forest Regression
 ml.hppA header to connect all the Algoritm header paths
  tests
 TestUtils.hpp