openGPMP
Open Source Mathematics Package
ml.hpp
Go to the documentation of this file.
1 /*************************************************************************
2  *
3  * Project
4  * _____ _____ __ __ _____
5  * / ____| __ \| \/ | __ \
6  * ___ _ __ ___ _ __ | | __| |__) | \ / | |__) |
7  * / _ \| '_ \ / _ \ '_ \| | |_ | ___/| |\/| | ___/
8  *| (_) | |_) | __/ | | | |__| | | | | | | |
9  * \___/| .__/ \___|_| |_|\_____|_| |_| |_|_|
10  * | |
11  * |_|
12  *
13  * Copyright (C) Akiel Aries, <akiel@akiel.org>, et al.
14  *
15  * This software is licensed as described in the file LICENSE, which
16  * you should have received as part of this distribution. The terms
17  * among other details are referenced in the official documentation
18  * seen here : https://akielaries.github.io/openGPMP/ along with
19  * important files seen in this project.
20  *
21  * You may opt to use, copy, modify, merge, publish, distribute
22  * and/or sell copies of the Software, and permit persons to whom
23  * the Software is furnished to do so, under the terms of the
24  * LICENSE file. As this is an Open Source effort, all implementations
25  * must be of the same methodology.
26  *
27  *
28  *
29  * This software is distributed on an AS IS basis, WITHOUT
30  * WARRANTY OF ANY KIND, either express or implied.
31  *
32  ************************************************************************/
33 
65 // <! Inspired from Machine Learning research, papers, !>
66 // <! textbooks Scikit-learn, Tensorflow, ML++ and much more. !>
67 
68 #ifndef ML_HPP
69 #define ML_HPP
70 
71 #include "ml/activators.hpp"
72 #include "ml/bayes_clf.hpp"
73 #include "ml/bayes_net.hpp"
74 #include "ml/encoder.hpp"
75 #include "ml/kfold.hpp"
76 #include "ml/knn.hpp"
77 #include "ml/kohonen_net.hpp"
78 #include "ml/linreg.hpp"
79 #include "ml/logreg.hpp"
80 #include "ml/mlp_net.hpp"
81 #include "ml/regularizers.hpp"
82 #include "ml/statistics.hpp"
83 #include "ml/svc.hpp"
84 #include "ml/trainers.hpp"
85 
86 #endif
Auto Encoder Neural Network effecient for unlabeled data.
K-Nearest Neighbors Clustering.
Logistic Regression.