PHP Machine Learning library
Go to file
Yuji Uchiyama c4f58f7f6f Fix logistic regression implementation (#169)
* Fix target value of LogisticRegression

* Fix probability calculation in LogisticRegression

* Change the default cost function to log-likelihood

* Remove redundant round function

* Fix for coding standard
2017-12-05 12:03:55 +01:00
bin Add support for coveralls.io (#153) 2017-11-15 11:08:51 +01:00
data add glass identification dataset 2016-04-09 15:46:54 +02:00
docs Change from theta to learning rate var name in NN (#159) 2017-11-20 23:39:50 +01:00
src/Phpml Fix logistic regression implementation (#169) 2017-12-05 12:03:55 +01:00
tests/Phpml Fix logistic regression implementation (#169) 2017-12-05 12:03:55 +01:00
var start to implement SVM with libsvm 2016-05-05 23:29:11 +02:00
.gitignore Added EasyCodingStandard + lots of code fixes (#156) 2017-11-22 22:16:10 +01:00
.php_cs php-cs-fixer - more rules (#118) 2017-08-17 08:50:37 +02:00
.travis.yml Added EasyCodingStandard + lots of code fixes (#156) 2017-11-22 22:16:10 +01:00
CHANGELOG.md Update changelog (#152) 2017-11-14 21:40:46 +01:00
CONTRIBUTING.md Require php-cs-fixer as dev dependency (#111) 2017-07-28 12:29:09 +02:00
LICENSE create some text in readme 2016-02-08 23:07:16 +01:00
README.md Add support for coveralls.io (#153) 2017-11-15 11:08:51 +01:00
composer.json Tests: use PHPUnit (6.4) exception methods (#165) 2017-11-28 08:00:13 +01:00
composer.lock Added EasyCodingStandard + lots of code fixes (#156) 2017-11-22 22:16:10 +01:00
easy-coding-standard.neon Added EasyCodingStandard + lots of code fixes (#156) 2017-11-22 22:16:10 +01:00
humbug.json.dist add config for humbug - mutation test framework 2016-05-03 12:35:57 +02:00
mkdocs.yml Neural networks improvements (#89) 2017-05-18 00:07:14 +02:00
phpunit.xml Added EasyCodingStandard + lots of code fixes (#156) 2017-11-22 22:16:10 +01:00

README.md

PHP-ML - Machine Learning library for PHP

Minimum PHP Version Latest Stable Version Build Status Documentation Status Total Downloads License Coverage Status Scrutinizer Code Quality

PHP-ML - Machine Learning library for PHP

Fresh approach to Machine Learning in PHP. Algorithms, Cross Validation, Neural Network, Preprocessing, Feature Extraction and much more in one library.

PHP-ML requires PHP >= 7.0.

Simple example of classification:

require_once __DIR__ . '/vendor/autoload.php';

use Phpml\Classification\KNearestNeighbors;

$samples = [[1, 3], [1, 4], [2, 4], [3, 1], [4, 1], [4, 2]];
$labels = ['a', 'a', 'a', 'b', 'b', 'b'];

$classifier = new KNearestNeighbors();
$classifier->train($samples, $labels);

echo $classifier->predict([3, 2]);
// return 'b'

Documentation

To find out how to use PHP-ML follow Documentation.

Installation

Currently this library is in the process of being developed, but You can install it with Composer:

composer require php-ai/php-ml

Examples

Example scripts are available in a separate repository php-ai/php-ml-examples.

Features

Contribute

You can find more about contributing in CONTRIBUTING.md.

License

PHP-ML is released under the MIT Licence. See the bundled LICENSE file for details.

Author

Arkadiusz Kondas (@ArkadiuszKondas)