Current Path : C:/xampp/htdocs/moodle/lib/mlbackend/php/phpml/src/Phpml/ |
Current File : C:/xampp/htdocs/moodle/lib/mlbackend/php/phpml/src/Phpml/Estimator.php |
<?php declare(strict_types=1); namespace Phpml; interface Estimator { public function train(array $samples, array $targets): void; /** * @return mixed */ public function predict(array $samples); }