php-ml/CHANGELOG.md

41 lines
1.9 KiB
Markdown
Raw Normal View History

2016-07-11 19:12:49 +00:00
CHANGELOG
=========
This changelog references the relevant changes done in PHP-ML library.
2017-02-23 19:59:30 +00:00
* 0.4.0 (2017-02-23)
* feature [Classification] - Ensemble Classifiers : Bagging and RandomForest by Mustafa Karabulut
* feature [Classification] - RandomForest::getFeatureImportances() method by Mustafa Karabulut
* feature [Classification] - Linear classifiers: Perceptron, Adaline, DecisionStump by Mustafa Karabulut
* feature [Classification] - AdaBoost algorithm by Mustafa Karabulut
* bug [Math] - Check if matrix is singular doing inverse by Povilas Susinskas
* optimization - Euclidean optimization by Mustafa Karabulut
2016-11-20 21:53:17 +00:00
2017-02-03 16:54:41 +00:00
* 0.3.0 (2017-02-04)
* feature [Persistency] - ModelManager - save and restore trained models by David Monllaó
* feature [Classification] - DecisionTree implementation by Mustafa Karabulut
* feature [Clustering] - Fuzzy C Means implementation by Mustafa Karabulut
* other small fixes and code styles refactors
2016-11-20 21:53:17 +00:00
* 0.2.1 (2016-11-20)
2016-10-15 18:54:41 +00:00
* feature [Association] - Apriori algorithm implementation
* bug [Metric] - division by zero
2016-08-14 16:35:17 +00:00
* 0.2.0 (2016-08-14)
* feature [NeuralNetwork] - MultilayerPerceptron and Backpropagation training
2016-07-24 11:52:52 +00:00
* 0.1.2 (2016-07-24)
2016-07-16 21:29:40 +00:00
* feature [Dataset] - FilesDataset - load dataset from files (folder names as targets)
2016-07-11 22:11:18 +00:00
* feature [Metric] - ClassificationReport - report about trained classifier
2016-07-16 21:29:40 +00:00
* bug [Feature Extraction] - fix problem with token count vectorizer array order
2016-07-24 11:52:52 +00:00
* tests [General] - add more tests for specific conditions
2016-07-11 22:11:18 +00:00
* 0.1.1 (2016-07-12)
2016-07-11 19:12:49 +00:00
* feature [Cross Validation] Stratified Random Split - equal distribution for targets in split
2016-07-11 22:21:34 +00:00
* feature [General] Documentation - add missing pages (Pipeline, ConfusionMatrix and TfIdfTransformer) and fix links
2016-07-11 19:12:49 +00:00
* 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