在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):jorgecasas/php-ml开源软件地址(OpenSource Url):https://github.com/jorgecasas/php-ml开源编程语言(OpenSource Language):PHP 100.0%开源软件介绍(OpenSource Introduction):PHP-ML - Machine Learning library for PHPFresh 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' AwardsDocumentationTo find out how to use PHP-ML follow Documentation. InstallationCurrently this library is in the process of being developed, but You can install it with Composer:
ExamplesExample scripts are available in a separate repository php-ai/php-ml-examples. DatasetsPublic datasets are available in a separate repository php-ai/php-ml-datasets. Features
Contribute
You can find more about contributing in CONTRIBUTING.md. LicensePHP-ML is released under the MIT Licence. See the bundled LICENSE file for details. AuthorArkadiusz Kondas (@ArkadiuszKondas) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论