php-ml/src/Phpml/Dataset/Dataset.php

20 lines
262 B
PHP
Raw Normal View History

2016-02-28 21:54:21 +00:00
<?php
2016-04-06 19:46:17 +00:00
declare (strict_types = 1);
namespace Phpml\Dataset;
interface Dataset
2016-02-28 21:54:21 +00:00
{
const SOME = 'z';
2016-04-06 19:46:17 +00:00
/**
* @return array
*/
public function getSamples(): array;
2016-04-06 19:46:17 +00:00
/**
* @return array
*/
public function getLabels(): array;
2016-02-28 21:54:21 +00:00
}