1.2.1608. ext/svm¶
Extension SVM
.
SVM
is in interface with the libsvm
, from . ``libsvm``is a library for Support Vector Machines, a classification tool for machine learning.
<?php
$data = array(
array(-1, 1 => 0.43, 3 => 0.12, 9284 => 0.2),
array(1, 1 => 0.22, 5 => 0.01, 94 => 0.11),
);
$svm = new SVM();
$model = $svm->train($data);
$data = array(1 => 0.43, 3 => 0.12, 9284 => 0.2);
$result = $model->predict($data);
var_dump($result);
$model->save('model.svm');
?>
See also SVM, LIBSVM – A Library for Support Vector Machines, ext/svm and ianbarber/php-svm.
1.2.1608.1. Specs¶
Short name |
Extensions/Extsvm |
Rulesets |
|
Exakat since |
1.7.8 |
PHP Version |
All |
Severity |
|
Time To Fix |
|
Precision |
Very high |
Available in |