Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 16 additions & 11 deletions ml_library_include/ml/ml.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@
#ifndef ML_H
#define ML_H

#include "tree/DecisionTreeClassifier.hpp"
#include "tree/DecisionTreeRegressor.hpp"
#include "tree/RandomForestClassifier.hpp"
#include "tree/RandomForestRegressor.hpp"
#include "regression/PolynomialRegression.hpp"
#include "regression/MultiLinearRegression.hpp"
#include "neural_network/ANN.hpp"
#include "neural_network/CNN.hpp"
#include "clustering/KMeans.hpp"
#include "association/Apriori.hpp"
#include "association/Eclat.hpp"
#include "./tree/DecisionTreeClassifier.hpp"
#include "./tree/DecisionTreeRegressor.hpp"
#include "./tree/RandomForestClassifier.hpp"
#include "./tree/RandomForestRegressor.hpp"
#include "./regression/PolynomialRegression.hpp"
#include "./regression/MultiLinearRegression.hpp"
#include "./neural_network/ANN.hpp"
#include "./neural_network/CNN.hpp"
#include "./clustering/KMeans.hpp"
#include "./association/Apriori.hpp"
#include "./association/Eclat.hpp"

/**
* @file ml.hpp
* @brief A header to connect all the Algoritm header paths.
*/

#endif // ML_H
Loading