@@ -10,21 +10,28 @@ A set of machine learing algorithms implemented in Python 3.5. Programs can one
1010
1111The included programs are:
1212
13- 1 . Linear Regression * * *
14- 2 . Logistic Regression for Classification * * *
15- 3 . Logistic Regression for Classification with PCA * * *
16- 4 . Naive Bayes Classification * * *
17- 5 . Support Vector Machine Classification * *
18- 6 . Neural Network Classification * *
19- 7 . Neural Network Regression * *
20- 8 . K-Means Clustering * * *
21- 9 . K-Nearest-Neighbor * * *
22- 10 . Mean-Shift Clustering * * *
23- 11 . K-Mediods Clustering *
24- 12 . DBSCAN Clustering * * *
25- 13 . Decision Tree Regression * * *
26- 14 . Decision Tree Classification * * *
27- 15 . Random Forest Classification * * *
13+ - ** Regression:**
14+ - Linear Regression * * *
15+ - Neural Network Regression * *
16+ - Decision Tree Regression * * *
17+
18+ - ** Classification:**
19+ - Logistic Regression for Classification * * *
20+ - Logistic Regression for Classification with PCA * * *
21+ - Naive Bayes Classification * * *
22+ - Support Vector Machine Classification * *
23+ - Neural Network Classification * *
24+ - Decision Tree Classification * * *
25+ - Random Forest Classification * * *
26+
27+ - ** Clustering:**
28+ - K-Means Clustering * * *
29+ - K-Nearest-Neighbor * * *
30+ - Mean-Shift Clustering * * *
31+ - K-Mediods Clustering *
32+ - DBSCAN Clustering * * *
33+
34+
2835
2936## Helpers
3037In addition the the main algorithm files, we have the following set of helper functions in the "ml_helpers.py" file:
0 commit comments