mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-25 08:08:31 +00:00
20 lines
262 B
PHP
20 lines
262 B
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace Phpml\Dataset;
|
|
|
|
interface Dataset
|
|
{
|
|
const SOME = 'z';
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getSamples(): array;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getLabels(): array;
|
|
}
|