Current Path : C:/xampp/htdocs/moodle/lib/mlbackend/php/phpml/src/Phpml/Helper/ |
Current File : C:/xampp/htdocs/moodle/lib/mlbackend/php/phpml/src/Phpml/Helper/Trainable.php |
<?php declare(strict_types=1); namespace Phpml\Helper; trait Trainable { /** * @var array */ private $samples = []; /** * @var array */ private $targets = []; public function train(array $samples, array $targets): void { $this->samples = array_merge($this->samples, $samples); $this->targets = array_merge($this->targets, $targets); } }