php-ai/php-ml

PHP-ML - Machine Learning library for PHP

Maintainers

👁 akondas

Package info

gitlab.com/php-ai/php-ml

Issues

pkg:composer/php-ai/php-ml

Statistics

Installs: 1 847 336

Dependents: 28

Suggesters: 1

Stars: 61

0.10.0 2022-11-09 09:25 UTC

Requires

  • php: ^8.0

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 543f11158c57bf64ef8ddecd5bab51d396d39f50

  • Arkadiusz Kondas <arkadiusz.kondas.woop@gmail.com>

artificial intelligenceNeural networkmachine learningpattern recognitioncomputational learning theorydata sciencefeature extraction

This package is auto-updated.

Last update: 2026-06-29 01:14:45 UTC


README

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

👁 Image

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.2.

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'

Awards

👁 Image

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.

Datasets

Public datasets are available in a separate repository php-ai/php-ml-datasets.

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)