diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5c80050 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +CHANGELOG +========= + +This changelog references the relevant changes done in PHP-ML library. + +* 0.2.0 (in progress) + * feature [Cross Validation] Stratified Random Split - equal distribution for targets in split + * feature [General] Documentation - add missing pages and fix links + +* 0.1.0 (2016-07-08) + * first develop release + * base tools for Machine Learning: Algorithms, Cross Validation, Preprocessing, Feature Extraction + * bug [General] #7 - PHP-ML doesn't work on Mac diff --git a/docs/index.md b/docs/index.md index 7943c38..dd444a3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -37,7 +37,7 @@ composer require php-ai/php-ml ## Features * Classification - * [SVC](http://php-ml.readthedocs.io/en/latest/machine-learning/classification/svc/) + * [SVC](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/) * Regression @@ -46,6 +46,7 @@ composer require php-ai/php-ml * Clustering * [k-Means](http://php-ml.readthedocs.io/en/latest/machine-learning/clustering/k-means/) * [DBSCAN](http://php-ml.readthedocs.io/en/latest/machine-learning/clustering/dbscan/) +* * Metric * [Accuracy](http://php-ml.readthedocs.io/en/latest/machine-learning/metric/accuracy/) * Cross Validation