1 <?php 2 3 declare(strict_types=1); 4 5 namespace Phpml\NeuralNetwork; 6 7 interface Training 8 { 9 /** 10 * @param array $samples 11 * @param array $targets 12 */ 13 public function train(array $samples, array $targets); 14 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body