From 240a22788f31ef9fc90c8dd27f5952bb4a5de882 Mon Sep 17 00:00:00 2001 From: Mustafa Karabulut Date: Fri, 10 Feb 2017 14:01:58 +0300 Subject: [PATCH] Added new algorithms to the list (#44) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c584354..62a906d 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,10 @@ Example scripts are available in a separate repository [php-ai/php-ml-examples]( * [SVC](http://php-ml.readthedocs.io/en/latest/machine-learning/classification/svc/) * [k-Nearest Neighbors](http://php-ml.readthedocs.io/en/latest/machine-learning/classification/k-nearest-neighbors/) * [Naive Bayes](http://php-ml.readthedocs.io/en/latest/machine-learning/classification/naive-bayes/) + * Decision Tree (CART) + * Ensemble Algorithms + * Bagging (Bootstrap Aggregating) + * Random Forest * Regression * [Least Squares](http://php-ml.readthedocs.io/en/latest/machine-learning/regression/least-squares/) * [SVR](http://php-ml.readthedocs.io/en/latest/machine-learning/regression/svr/)